Added abp.dom.js

pull/272/head
Halil İbrahim Kalkan 8 years ago
parent c9c0ddd019
commit e320094de7

@ -0,0 +1,18 @@
var abp = abp || {};
(function ($) {
if (!$) {
return;
}
abp.dom = abp.dom || {};
abp.dom.onElementLoaded = function (callback) {
abp.event.on('abp.dom.elementLoaded', callback);
};
abp.dom.elementLoaded = function(args) {
abp.event.trigger('abp.dom.elementLoaded', args);
}
})(jQuery);
Loading…
Cancel
Save