mirror of
https://github.com/codeninjasllc/discourse.git
synced 2025-02-16 03:30:05 -05:00
amazing the amount of damage a missing .js extension can cause
This commit is contained in:
parent
15c5f5b840
commit
a02414410f
2 changed files with 2 additions and 1 deletions
|
@ -3,6 +3,7 @@
|
||||||
|
|
||||||
// TODO: automate this to grab from the manifest, Rails voodoo should be able to get it
|
// TODO: automate this to grab from the manifest, Rails voodoo should be able to get it
|
||||||
var map = {
|
var map = {
|
||||||
|
'defer/html-sanitizer-bundle': <%= asset_path('defer/html-sanitizer-bundle.js').inspect.html_safe %>
|
||||||
};
|
};
|
||||||
|
|
||||||
var assetPath = function(asset){
|
var assetPath = function(asset){
|
||||||
|
|
|
@ -30,7 +30,7 @@ module Discourse
|
||||||
config.assets.paths += %W(#{config.root}/config/locales)
|
config.assets.paths += %W(#{config.root}/config/locales)
|
||||||
|
|
||||||
config.assets.precompile += [
|
config.assets.precompile += [
|
||||||
'admin.js', 'admin.css', 'shiny/shiny.css', 'preload_store.js', 'jquery.js' #, 'defer/html-sanitizer-bundle.js'
|
'admin.js', 'admin.css', 'shiny/shiny.css', 'preload_store.js', 'jquery.js', 'defer/html-sanitizer-bundle.js'
|
||||||
]
|
]
|
||||||
|
|
||||||
# Activate observers that should always be running.
|
# Activate observers that should always be running.
|
||||||
|
|
Loading…
Reference in a new issue