Last active
August 29, 2015 14:05
-
-
Save jforaker/87a3b849f4260bca28b8 to your computer and use it in GitHub Desktop.
Sencha Touch swipe to navigate
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
listeners: { | |
swipe: { | |
element: 'element', | |
fn: function (e) { | |
var direction = e.direction, | |
feednav = Ext.ComponentQuery.query('FeederNav')[0]; | |
if (direction == 'right') { | |
feednav.reset(); | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment