discourse/app/views/common/_discourse_javascript.html.erb

30 lines
939 B
Plaintext
Raw Normal View History

<script>
window.assetPath = (function(){
// TODO: automate this to grab from the manifest, Rails voodoo should be able to get it
var map = {
2013-04-29 08:02:04 +08:00
'defer/html-sanitizer-bundle': <%= asset_path('defer/html-sanitizer-bundle.js').inspect.html_safe %>,
'defer/google_diff_match_patch': <%= asset_path('defer/google_diff_match_patch.js').inspect.html_safe %>
};
var assetPath = function(asset){
2013-02-26 00:42:20 +08:00
return map[asset];
};
return assetPath;
})();
</script>
<script>
Discourse.CDN = '<%= Rails.configuration.action_controller.asset_host %>';
Discourse.BaseUrl = '<%= RailsMultisite::ConnectionManagement.current_hostname %>';
Discourse.BaseUri = '<%= Discourse::base_uri "/" %>';
Discourse.Environment = '<%= Rails.env %>';
2013-10-16 08:31:54 +08:00
Discourse.SiteSettings = PreloadStore.get('siteSettings');
Discourse.Router.map(function() {
Discourse.routeBuilder.call(this);
});
Discourse.start()
</script>