@@ -589,7 +589,7 @@ var requirejs, require, define;
589
589
id : mod . map . id ,
590
590
uri : mod . map . url ,
591
591
config : function ( ) {
592
- return getOwn ( config . config , mod . map . id ) || { } ;
592
+ return getOwn ( config . config , mod . map . id ) || { } ;
593
593
} ,
594
594
exports : mod . exports || ( mod . exports = { } )
595
595
} ) ;
@@ -1236,7 +1236,8 @@ var requirejs, require, define;
1236
1236
while ( defQueue . length ) {
1237
1237
args = defQueue . shift ( ) ;
1238
1238
if ( args [ 0 ] === null ) {
1239
- return onError ( makeError ( 'mismatch' , 'Mismatched anonymous define() module: ' + args [ args . length - 1 ] ) ) ;
1239
+ return onError ( makeError ( 'mismatch' , 'Mismatched anonymous define() module: ' +
1240
+ args [ args . length - 1 ] ) ) ;
1240
1241
} else {
1241
1242
//args are id, deps, factory. Should be normalized by the
1242
1243
//define() function.
@@ -1323,7 +1324,7 @@ var requirejs, require, define;
1323
1324
each ( cfg . packages , function ( pkgObj ) {
1324
1325
var location , name ;
1325
1326
1326
- pkgObj = typeof pkgObj === 'string' ? { name : pkgObj } : pkgObj ;
1327
+ pkgObj = typeof pkgObj === 'string' ? { name : pkgObj } : pkgObj ;
1327
1328
1328
1329
name = pkgObj . name ;
1329
1330
location = pkgObj . location ;
@@ -1497,7 +1498,7 @@ var requirejs, require, define;
1497
1498
//in array so that the splices do not
1498
1499
//mess up the iteration.
1499
1500
eachReverse ( defQueue , function ( args , i ) {
1500
- if ( args [ 0 ] === id ) {
1501
+ if ( args [ 0 ] === id ) {
1501
1502
defQueue . splice ( i , 1 ) ;
1502
1503
}
1503
1504
} ) ;
@@ -1984,7 +1985,7 @@ var requirejs, require, define;
1984
1985
//like a module name.
1985
1986
mainScript = mainScript . replace ( jsSuffixRegExp , '' ) ;
1986
1987
1987
- //If mainScript is still a path, fall back to dataMain
1988
+ //If mainScript is still a path, fall back to dataMain
1988
1989
if ( req . jsExtRegExp . test ( mainScript ) ) {
1989
1990
mainScript = dataMain ;
1990
1991
}
@@ -2070,7 +2071,6 @@ var requirejs, require, define;
2070
2071
jQuery : true
2071
2072
} ;
2072
2073
2073
-
2074
2074
/**
2075
2075
* Executes the text. Normally just uses eval, but can be modified
2076
2076
* to use a better, environment-specific call. Only used for transpiling
0 commit comments