Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
How about a fun Event_.tar.gz | 2014-07-03 | 141.6 kB | |
How about a fun Event_.zip | 2014-07-03 | 162.1 kB | |
README.md | 2014-07-03 | 483 Bytes | |
Totals: 3 Items | 304.2 kB | 0 |
Navobile now triggers 4 events: - navobile:open - fired when the navigation cta is tapped and navobile is hidden - navobile:opened - fired when the navobile is fully open - navobile:close - fired when the navigation cta is tapped and navobile is visible - navobile:closed - fired when the navobile is fully closed
All of these are triggered on the document, below is a jQuery example:
$(document).bind('navobile:open', function() {
alert('navobile is opening')
});