You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 14, 2021. It is now read-only.
I've wrapped both the pluginifier and boiler plate code in:
// Wrap in a closure to secure $ for jQuery// Uses AMD or browser globals to create a jQuery plugin.// It does not try to register in a CommonJS environment since jQuery is not likely to run in those environments.// See jqueryPluginCommonJs.js for that version. ref: 27/05/2012(function(factory){if(typeofdefine==='function'&&define.amd){// AMD. Register as an anonymous module.define(['jquery'],factory);}else{// Browser globalsfactory(jQuery);}}(function($){
.....}));