bootstrap-timepicker
bootstrap-timepicker copied to clipboard
remove need for jQuery global
e.g. by wrapping plugin like this:
(function(factory){
if (typeof define === "function" && define.amd) {
define(["jquery"], factory);
} else if (typeof exports === 'object') {
factory(require('jquery'));
} else {
factory(jQuery);
}
}(function($, undefined){
// the plugin code
}));
This PR would close this: https://github.com/jdewit/bootstrap-timepicker/pull/350