Files
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

21 lines
466 B
JavaScript

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