This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // this function will active menu using href match | |
| // Author: http://www.paulund.co.uk/use-jquery-to-highlight-active-menu-item | |
| function auto_active_menu() {¬ | |
| var url = window.location.href;¬ | |
| // Work for relative and absolute hrefs¬ | |
| $('.menu a').filter(function() { | |
| return this.href == url;¬ | |
| }).addClass('active');¬ | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // | |
| // StickyHeaderFlowLayout.h | |
| // Wombat | |
| // | |
| // Created by Todd Laney on 1/9/13. | |
| // Copyright (c) 2013 ToddLa. All rights reserved. | |
| // | |
| // Modified from http://blog.radi.ws/post/32905838158/sticky-headers-for-uicollectionview-using THANKS! | |
| // |
NewerOlder