Skip to content

Commit eae1d52

Browse files
committed
change @ to #
1 parent 32c006f commit eae1d52

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

dist/seajs-wrap-debug.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ seajs.on("resolve", function(data) {
3030
wrappedContent = 'define(function(require, exports, module) {\n' +
3131
content + '\n})';
3232
}
33-
wrappedContent = wrappedContent + '//@ sourceURL=' + uri;
33+
wrappedContent = wrappedContent + '//# sourceURL=' + uri;
3434
globalEval(wrappedContent, uri);
3535
}
3636
data.uri = uri

dist/seajs-wrap.js

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/seajs-wrap.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ seajs.on("resolve", function(data) {
2929
wrappedContent = 'define(function(require, exports, module) {\n' +
3030
content + '\n})';
3131
}
32-
wrappedContent = wrappedContent + '//@ sourceURL=' + uri;
32+
wrappedContent = wrappedContent + '//# sourceURL=' + uri;
3333
globalEval(wrappedContent, uri);
3434
}
3535
data.uri = uri

0 commit comments

Comments
 (0)