Merge pull request #4468 from ciaranlangton/master

Fix incorrect MIME/Content-Type for JavaScript
Min RK 7 years ago committed by GitHub
commit 7a13d5c096
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1619,10 +1619,12 @@ class NotebookApp(JupyterApp):
def init_mime_overrides(self):
# On some Windows machines, an application has registered an incorrect
# mimetype for CSS in the registry. Tornado uses this when serving
# .css files, causing browsers to reject the stylesheet. We know the
# mimetype always needs to be text/css, so we override it here.
# mimetype for CSS and JavaScript in the registry.
# Tornado uses this when serving .css and .js files, causing browsers to
# reject these files. We know the mimetype always needs to be text/css for css
# and application/javascript for JS, so we override it here.
mimetypes.add_type('text/css', '.css')
mimetypes.add_type('application/javascript', '.js')
def shutdown_no_activity(self):

Loading…
Cancel
Save