jquery-mobile/build/wrap.start
Ghislain Seguin 5b8f2be9d2 Added wrapper to export as an AMD modules
removed jquery.mobile.exports
2012-01-12 17:45:47 -08:00

12 lines
No EOL
361 B
Text

(function ( root, doc, factory ) {
if ( typeof define === "function" && define.amd ) {
// AMD. Register as an anonymous module.
define( [ "jquery" ], function ( $ ) {
factory( $, root, doc );
return $.mobile;
});
} else {
// Browser globals
factory( root.jQuery, root, doc );
}
}( this, document, function ( $, window, document, undefined ) {