Skip to content

Commit 675ae7f

Browse files
committed
snapshot
1 parent 788e458 commit 675ae7f

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

dist/r.js

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @license r.js 2.0.2+ Wed, 04 Jul 2012 00:44:40 GMT Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
2+
* @license r.js 2.0.2+ Sun, 08 Jul 2012 06:25:26 GMT Copyright (c) 2010-2012, The Dojo Foundation All Rights Reserved.
33
* Available via the MIT or new BSD license.
44
* see: http://github.com/jrburke/requirejs for details
55
*/
@@ -20,7 +20,7 @@ var requirejs, require, define;
2020

2121
var fileName, env, fs, vm, path, exec, rhinoContext, dir, nodeRequire,
2222
nodeDefine, exists, reqMain, loadedOptimizedLib, existsForNode,
23-
version = '2.0.2+ Wed, 04 Jul 2012 00:44:40 GMT',
23+
version = '2.0.2+ Sun, 08 Jul 2012 06:25:26 GMT',
2424
jsSuffixRegExp = /\.js$/,
2525
commandOption = '',
2626
useLibLoaded = {},
@@ -13598,7 +13598,13 @@ function (file, pragma, parse, lang, logger, commonJs) {
1359813598
var layer,
1359913599
pluginBuilderRegExp = /(["']?)pluginBuilder(["']?)\s*[=\:]\s*["']([^'"\s]+)["']/,
1360013600
oldNewContext = require.s.newContext,
13601-
oldDef;
13601+
oldDef,
13602+
13603+
//create local undefined values for module and exports,
13604+
//so that when files are evaled in this function they do not
13605+
//see the node values used for r.js
13606+
exports,
13607+
module;
1360213608

1360313609
//Stored cached file contents for reuse in other layers.
1360413610
require._cachedFileContents = {};

0 commit comments

Comments
 (0)