We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 80ce71a commit 3ccf294Copy full SHA for 3ccf294
es6.js
@@ -10,7 +10,7 @@ define([
10
//>>excludeEnd('excludeBabel')
11
) {
12
//>>excludeStart('excludeBabel', pragmas.excludeBabel)
13
- var fetchText, _buildMap = {};
+ var fetchText, _buildMap = {};
14
15
if (typeof window !== 'undefined' && window.navigator && window.document) {
16
fetchText = function (url, callback) {
@@ -69,6 +69,10 @@ return {
69
var sourceFileName = name + fileExtension;
70
var url = req.toUrl(sourceFileName);
71
72
+ if (url.indexOf('empty:') === 0) {
73
+ return onload();
74
+ }
75
+
76
var options = {};
77
for (var key in defaultOptions) {
78
options[key] = defaultOptions[key];
0 commit comments