Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: polymer_0.4.0/bower_components/web-animations-js/tutorial/jquery.js

Issue 786953007: npm_modules: Fork bower_components into Polymer 0.4.0 and 0.5.0 versions (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 /*! 1 /*!
2 * jQuery JavaScript Library v1.9.0 2 * jQuery JavaScript Library v1.9.0
3 * http://jquery.com/ 3 * http://jquery.com/
4 * 4 *
5 * Includes Sizzle.js 5 * Includes Sizzle.js
6 * http://sizzlejs.com/ 6 * http://sizzlejs.com/
7 * 7 *
8 * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors 8 * Copyright 2005, 2012 jQuery Foundation, Inc. and other contributors
9 * Released under the MIT license 9 * Released under the MIT license
10 * http://jquery.org/license 10 * http://jquery.org/license
(...skipping 9535 matching lines...) Expand 10 before | Expand all | Expand 10 after
9546 // AMD modules. A named AMD is safest and most robust way to register. 9546 // AMD modules. A named AMD is safest and most robust way to register.
9547 // Lowercase jquery is used because AMD module names are derived from 9547 // Lowercase jquery is used because AMD module names are derived from
9548 // file names, and jQuery is normally delivered in a lowercase file name. 9548 // file names, and jQuery is normally delivered in a lowercase file name.
9549 // Do this after creating the global so that if an AMD module wants to call 9549 // Do this after creating the global so that if an AMD module wants to call
9550 // noConflict to hide this version of jQuery, it will work. 9550 // noConflict to hide this version of jQuery, it will work.
9551 if ( typeof define === "function" && define.amd && define.amd.jQuery ) { 9551 if ( typeof define === "function" && define.amd && define.amd.jQuery ) {
9552 define( "jquery", [], function () { return jQuery; } ); 9552 define( "jquery", [], function () { return jQuery; } );
9553 } 9553 }
9554 9554
9555 })( window ); 9555 })( window );
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698