Fix menu scroll position
authorColeman Watts <coleman@civicrm.org>
Mon, 26 Sep 2016 21:06:59 +0000 (17:06 -0400)
committerColeman Watts <coleman@civicrm.org>
Mon, 26 Sep 2016 21:06:59 +0000 (17:06 -0400)
templates/CRM/common/navigation.js.tpl

index 3380057a4a2b3043f3d7ce068fb4ee9c0b4ec669..68063afdfa0b7efc5a49c18196f269df9d6f7142 100644 (file)
 {if $config->userFramework neq 'Joomla'}{literal}
   $('body').append(menuMarkup);
 
+  $('#civicrm-menu').css({position: "fixed", top: "0px"});
+
   //Track Scrolling
   $(window).scroll(function () {
-    var scroll = document.documentElement.scrollTop || document.body.scrollTop;
-    $('#civicrm-menu').css({top: "scroll", position: "fixed", top: "0px"});
     $('div.sticky-header').css({top: "23px", position: "fixed"});
   });