Skip to content

Commit

Permalink
Merge pull request #11 from temich/javascript_mime_fix
Browse files Browse the repository at this point in the history
Fixed javascript mime type
  • Loading branch information
Caolan McMahon committed Dec 4, 2013
2 parents a1f7676 + aec97d8 commit 4853974
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/quip.js
Expand Up @@ -91,7 +91,7 @@ module.exports = function (req, res, next) {
res.xml = withType('text/xml');
res.atom = withType('application/atom+xml');
res.rss = withType('application/rss+xml');
res.javascript = withType('text/javascript');
res.javascript = withType('application/javascript');
res.json = withType('application/json');

// custom mime type
Expand Down

0 comments on commit 4853974

Please sign in to comment.