mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
10 lines
400 B
JavaScript
10 lines
400 B
JavaScript
//>>excludeStart("jqmBuildExclude", pragmas.jqmBuildExclude);
|
|
//>>description: Creates the define method on window, for async loading
|
|
//>>label: Define
|
|
//>>excludeEnd("jqmBuildExclude");
|
|
|
|
// creates the define method on window, only used where async loading
|
|
// is not desired in the docs and experiments
|
|
window.define = function(){
|
|
Array.prototype.slice.call( arguments ).pop()( window.jQuery );
|
|
};
|