| OLD | NEW |
| (Empty) | |
| 1 $(document).scroll(function(){ |
| 2 // If has not activated (has no attribute "data-top" |
| 3 if (!$('.subnav').attr('data-top')) { |
| 4 // If already fixed, then do nothing |
| 5 if ($('.subnav').hasClass('subnav-fixed')) return; |
| 6 // Remember top position |
| 7 var offset = $('.subnav').offset() |
| 8 $('.subnav').attr('data-top', offset.top); |
| 9 } |
| 10 |
| 11 if ($('.subnav').attr('data-top') - $('.subnav').outerHeight() <= $(this).sc
rollTop()) |
| 12 $('.subnav').addClass('subnav-fixed'); |
| 13 else |
| 14 $('.subnav').removeClass('subnav-fixed'); |
| 15 }); |
| OLD | NEW |