Revert "Add a hack to prevent redirect of requests for `/static/js/pad` to `/static/js/pad.js`."

This reverts commit af4bd5ca65.
pull/521/head
Chad Weider 2012-02-28 19:00:27 -08:00
parent 45b7cafca4
commit 82652dffda
1 changed files with 1 additions and 2 deletions

View File

@ -35,10 +35,9 @@ var TAR_PATH = path.join(__dirname, 'tar.json');
var tar = JSON.parse(fs.readFileSync(TAR_PATH, 'utf8'));
// Rewrite tar to include modules with no extensions and proper rooted paths.
// HACK: Also use non-extension name so redirects are not encountered.
exports.tar = {};
for (var key in tar) {
exports.tar['/' + key.replace(/\.js$/, '')] =
exports.tar['/' + key] =
tar[key].map(function (p) {return '/' + p}).concat(
tar[key].map(function (p) {return '/' + p.replace(/\.js$/, '')})
);