mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-08 15:51:16 +08:00
utils
This commit is contained in:
13
js/framework/test/event-listeners.js
Normal file
13
js/framework/test/event-listeners.js
Normal file
@ -0,0 +1,13 @@
|
||||
(function(window, document, framework, $) {
|
||||
|
||||
framework.on("ready", function(){
|
||||
console.log("ready")
|
||||
});
|
||||
|
||||
|
||||
// Test that the standard jQuery call works with our event system
|
||||
$(window).on("initalized", function() {
|
||||
console.log("initalized");
|
||||
});
|
||||
|
||||
})(this, document, this.FM = this.FM || {}, jQuery);
|
||||
Reference in New Issue
Block a user