aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Methvin <dave.methvin@gmail.com>2013-07-02 16:58:20 -0400
committerDave Methvin <dave.methvin@gmail.com>2013-07-02 17:00:18 -0400
commit5f2b5861b04756f0f4fb915188af3982a83337d2 (patch)
tree989a92db20ad282330eb448b73db2c5493d165ab
parentcfa00353e6c229ee037cef32eb5726334e4e2f2c (diff)
downloadjquery-5f2b5861b04756f0f4fb915188af3982a83337d2.tar.gz
jquery-5f2b5861b04756f0f4fb915188af3982a83337d2.zip
Revert "Fix #13983. Switch to //# for sourcemaps."
Per the discussion here: https://code.google.com/p/chromium/issues/detail?id=256636 Thanks to the Chrome team for the quick response! This reverts commit d53ddc90c1f119fb9148a553443ef3fbc3f3cc99. (cherry picked from commit 6e630fbbb19306e1914712502a2b22872e94ddad)
-rw-r--r--Gruntfile.js2
-rw-r--r--build/release.js6
2 files changed, 4 insertions, 4 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 0052f1c84..4a024a472 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -115,7 +115,7 @@ module.exports = function( grunt ) {
"/*! jQuery v<%= pkg.version %> | " +
"(c) 2005, 2013 jQuery Foundation, Inc. | " +
"jquery.org/license\n" +
- "//# sourceMappingURL=jquery.min.map\n" +
+ "//@ sourceMappingURL=jquery.min.map\n" +
"*/\n"
}
}
diff --git a/build/release.js b/build/release.js
index 8561bdf3a..d4161cdbc 100644
--- a/build/release.js
+++ b/build/release.js
@@ -166,10 +166,10 @@ function makeReleaseCopies( next ) {
} else if ( /\.min\.js$/.test( releaseFile ) ) {
// Minified files point back to the corresponding map;
// again assume one big happy directory.
- // "//# sourceMappingURL=jquery.min.map"
+ // "//@ sourceMappingURL=jquery.min.map"
text = fs.readFileSync( builtFile, "utf8" )
- .replace( /\/\/# sourceMappingURL=\S+/,
- "//# sourceMappingURL=" + unpathedFile.replace( /\.js$/, ".map" ) );
+ .replace( /\/\/@ sourceMappingURL=\S+/,
+ "//@ sourceMappingURL=" + unpathedFile.replace( /\.js$/, ".map" ) );
fs.writeFileSync( releaseFile, text );
} else if ( builtFile !== releaseFile ) {
copy( builtFile, releaseFile );