web-apps/vendor/requirejs/tests/jquery/scripts/jquery.epsilon.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

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);
}
}());