mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 07:41:51 +08:00
16 lines
242 B
JavaScript
16 lines
242 B
JavaScript
|
|
(function(window, document, ionic) {
|
|
|
|
function initalize() {
|
|
|
|
ionic.on("swipe", swipe, document.body)
|
|
|
|
}
|
|
|
|
function swipe(e) {
|
|
alert(e.target.tagName)
|
|
}
|
|
|
|
ionic.on("domready", initalize);
|
|
|
|
})(window, document, ionic); |