Recommend this page to a friend! | Stumble It! | Bookmark in del.icio.us |
Classes of Tomas Corral | > | Hydra.js | > | examples_and_documents/js/sampleModuleNotifier.js | > | Download | ||
|
Download |
Hydra.module.register("sampleModuleNotifier", function (action) { return { sModule: 'BaseSample', init: function (oData) { alert("Notifier Module started"); action.notify({ type: 'linkClicked', data: null }); }, handleAction: function (oNotifier) {}, destroy: function () {} }; }); |