git-svn-id: https://msi/svn/firstRepo/WebClient/trunk@13 0f545695-f87b-41b6-9a03-7f16563b5454
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
var pathJquery = "http://ajax.googleapis.com/ajax/libs/jquery/" + myManifest.Settings.JQueryVersion + "/jquery.min";
|
||||
var pathJqueryMobile = "http://ajax.googleapis.com/ajax/libs/jquerymobile/"+ myManifest.Settings.JQueryMobileVersion + "/jquery.mobile.min";
|
||||
|
||||
requirejs.config({
|
||||
baseUrl: 'js',
|
||||
urlArgs: "v" + myManifest.getUrlArg(),
|
||||
paths: {
|
||||
jquery: pathJquery,
|
||||
underscore: 'libs/underscore-min',
|
||||
jQueryPlugins: 'libs/jQueryPlugins',
|
||||
backbone: 'libs/backbone-min',
|
||||
jqm: pathJqueryMobile,
|
||||
text: 'libs/text'
|
||||
},
|
||||
shim: {
|
||||
jqm: {
|
||||
deps: [ 'jquery' ]
|
||||
},
|
||||
jQueryPlugins: {
|
||||
deps: [ 'jquery' ]
|
||||
}
|
||||
},
|
||||
deps:[ "main" ]
|
||||
});
|
||||
Reference in New Issue
Block a user