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

19 lines
457 B
JavaScript

require({
"baseUrl": "./scripts/",
"paths": {
"jquery": "http://ajax.microsoft.com/ajax/jQuery/jquery-1.7.1.min"
//"jquery": "http://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min"
},
priority: ['jquery']
});
define(["jquery.gamma", "jquery.epsilon"], function() {
$(function () {
doh.is('epsilon', $('body').epsilon());
doh.is('epsilon', $('body').epsilon());
readyFired();
});
});