(function ($) {
  $().ready(function () {
    if ($( '.dropdown-menu' ).length){
      if (window.matchMedia('(min-width: 768px)').matches) {
        $( '.dropdown-menu' ).prependTo( '.region-sidebar-first' );
      }
    }
  });
})(jQuery);