lmd
Version:
LMD: Lazy Module Declaration
41 lines (31 loc) • 664 B
JavaScript
/*!
* uQuery JavaScript Library v1.7.2
* http://jquery.com/
*
* Copyright 2011, John Resig
* Dual licensed under the MIT or GPL Version 2 licenses.
* http://jquery.org/license
*
* Includes Sizzle.js
* http://sizzlejs.com/
* Copyright 2011, The Dojo Foundation
* Released under the MIT, BSD, and GPL Licenses.
*
* Date: Wed Mar 21 12:46:34 2012 -0700
*/
(function( window, undefined ) {
// run some dep
window.uQuery_dep();
// crop
var uQuery = (function() {
var uQuery = function () {
// crop
};
// crop
return uQuery;
})();
// crop
// Expose jQuery to the global object
window.uQuery = uQuery;
// crop
})( window );