mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-07 06:57:02 +08:00
Progress on #37
This commit is contained in:
@ -97,11 +97,11 @@
|
||||
|
||||
|
||||
// Map some convenient top-level functions for event handling
|
||||
ionic.on = function() { ionic.EventController.on.apply(ionic.EventController, arguments); }
|
||||
ionic.off = function() { ionic.EventController.off.apply(ionic.EventController, arguments); }
|
||||
ionic.trigger = function() { ionic.EventController.trigger.apply(ionic.EventController.trigger, arguments); }
|
||||
ionic.onGesture = function() { ionic.EventController.onGesture.apply(ionic.EventController.onGesture, arguments); }
|
||||
ionic.offGesture = function() { ionic.EventController.offGesture.apply(ionic.EventController.offGesture, arguments); }
|
||||
ionic.on = function() { ionic.EventController.on.apply(ionic.EventController, arguments); };
|
||||
ionic.off = function() { ionic.EventController.off.apply(ionic.EventController, arguments); };
|
||||
ionic.trigger = function() { ionic.EventController.trigger.apply(ionic.EventController.trigger, arguments); };
|
||||
ionic.onGesture = function() { ionic.EventController.onGesture.apply(ionic.EventController.onGesture, arguments); };
|
||||
ionic.offGesture = function() { ionic.EventController.offGesture.apply(ionic.EventController.offGesture, arguments); };
|
||||
|
||||
// DISABLING FOR NOW. THE TAP CODE AT THE EXT LEVEL SHOULD BE DOING THIS
|
||||
// Set up various listeners
|
||||
|
||||
Reference in New Issue
Block a user