2013-02-19 23:37:42 -05:00
|
|
|
<script>
|
|
|
|
window.assetPath = (function(){
|
|
|
|
|
|
|
|
// TODO: automate this to grab from the manifest, Rails voodoo should be able to get it
|
|
|
|
var map = {
|
2013-04-28 20:02:04 -04: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 %>
|
2013-02-19 23:37:42 -05:00
|
|
|
};
|
|
|
|
|
2013-11-04 05:52:12 -05:00
|
|
|
return function(asset){ return map[asset]; };
|
2013-02-19 23:37:42 -05:00
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script>
|
2013-11-04 05:52:12 -05:00
|
|
|
Discourse.CDN = '<%= Rails.configuration.action_controller.asset_host %>';
|
|
|
|
Discourse.BaseUrl = '<%= RailsMultisite::ConnectionManagement.current_hostname %>';
|
2013-04-03 18:26:47 -04:00
|
|
|
Discourse.BaseUri = '<%= Discourse::base_uri "/" %>';
|
2013-02-19 23:37:42 -05:00
|
|
|
Discourse.Environment = '<%= Rails.env %>';
|
2013-10-15 20:31:54 -04:00
|
|
|
Discourse.SiteSettings = PreloadStore.get('siteSettings');
|
2013-11-04 05:52:12 -05:00
|
|
|
Discourse.Router.map(function() { Discourse.routeBuilder.call(this); });
|
2013-02-19 23:37:42 -05:00
|
|
|
Discourse.start()
|
|
|
|
</script>
|
2013-11-27 12:26:27 -05:00
|
|
|
|
2013-11-27 13:56:07 -05:00
|
|
|
<%= javascript_include_tag '/assets/browser-update' %>
|