21 lines
458 B
JavaScript
21 lines
458 B
JavaScript
(function () {
|
|
//Define the plugin.
|
|
function plugin($) {
|
|
$.fn.gamma = function() {
|
|
return 'gamma';
|
|
};
|
|
|
|
$(function () {
|
|
doh.is('gamma', $('body').gamma());
|
|
readyFired();
|
|
});
|
|
}
|
|
|
|
//Register the plugin.
|
|
if (typeof define !== 'undefined' && define.amd) {
|
|
define(['jquery'], plugin);
|
|
} else if (typeof jQuery !== 'undefined') {
|
|
plugin(jQuery);
|
|
}
|
|
}());
|