File tree Expand file tree Collapse file tree 3 files changed +18
-3
lines changed
Expand file tree Collapse file tree 3 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 2020 "scripts" : {
2121 "test" : " grunt"
2222 },
23+ "dependencies" : {
24+ "jquery" : " >=1.7.0 <3.0.0"
25+ },
2326 "devDependencies" : {
2427 "chalk" : " 1.1.3" ,
2528 "commitplease" : " 2.3.1" ,
Original file line number Diff line number Diff line change 1- ( function ( jQuery , window , undefined ) {
1+ ; ( function ( factory ) {
2+ /* jshint browserify:true */
3+ if ( typeof define === "function" && define . amd ) {
4+ // AMD. Register as an anonymous module.
5+ define ( [ "jquery" ] , window , factory ) ;
6+ } else if ( typeof module === "object" && module . exports ) {
7+ // Node/CommonJS
8+ module . exports = factory ( require ( "jquery" ) , window ) ;
9+ } else {
10+ // Browser globals
11+ factory ( jQuery , window ) ;
12+ }
13+ } ( function ( jQuery , window ) {
214// See http://bugs.jquery.com/ticket/13335
315// "use strict";
Original file line number Diff line number Diff line change 1-
2- } ) ( jQuery , window ) ;
1+ return jQuery ;
2+ } ) ) ;
You can’t perform that action at this time.
0 commit comments