var Module;
(function($) {
"use strict";
Module = (function() {
return {
init: function() {
this.counterShortcode()
},
counterShortcode: function() {
alert('Hello World');
}
}
}());
})(jQuery);
$(document).ready(function(){
Module.init();
})
0 comments:
Post a Comment