9 lines
283 B
JavaScript
9 lines
283 B
JavaScript
(() => {
|
|
// resources/front/js/nmsp-plugin-name.js
|
|
(function($) {
|
|
console.log("Your plugin just got loaded!");
|
|
console.log("This is what you get as jQuery:", $);
|
|
console.log("Here is what you set for nmspPluginApi:", window.nmspPluginApi);
|
|
})(window.jQuery);
|
|
})();
|