You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tinyColorPicker/colors-amd-wrapper.js

13 lines
302 B
JavaScript

(function (factory) {
if (typeof define === 'function' && define.amd) {
define([], function () {
return factory(window);
});
} else {
window.Colors = factory(window);
}
}(
// paste colors.js without self invoking part:
// beginning: drop 'window.Colors = ('
// end: drop ')(window);'
));