Revert "Export"
[framework/web/web-ui-fw.git] / libs / js / jquery-mobile-1.1.0 / js / jquery.mobile.define.js
1 //>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
2 //>>description: Creates the define method on window, for async loading
3 //>>label: Define
4 //>>group: exclude
5 //>>excludeEnd("jqmBuildExclude");
6
7 // creates the define method on window, only used where async loading
8 // is not desired in the docs and experiments
9 window.define = function(){
10         Array.prototype.slice.call( arguments ).pop()( window.jQuery );
11 };