2013-02-20 12:37:42 +08: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-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 %>
|
2013-02-20 12:37:42 +08:00
|
|
|
};
|
|
|
|
|
2013-11-04 18:52:12 +08:00
|
|
|
return function(asset){ return map[asset]; };
|
2013-02-20 12:37:42 +08:00
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
2013-12-03 02:15:31 +08:00
|
|
|
<% if Rails.env.development? %>
|
|
|
|
<script>
|
|
|
|
// Don't swallow promises in development mode. Let's fix those.
|
|
|
|
Ember.RSVP.configure('onerror', function(e) {
|
|
|
|
if (e) {
|
|
|
|
if (e.message || e.stack) {
|
|
|
|
console.log(e.message);
|
|
|
|
console.log(e.stack);
|
|
|
|
} else {
|
|
|
|
console.log("Uncaught promise: " + e.toString());
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.log("A promise failed but was not caught.");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<% end %>
|
|
|
|
|
2013-02-20 12:37:42 +08:00
|
|
|
<script>
|
2013-11-04 18:52:12 +08:00
|
|
|
Discourse.CDN = '<%= Rails.configuration.action_controller.asset_host %>';
|
|
|
|
Discourse.BaseUrl = '<%= RailsMultisite::ConnectionManagement.current_hostname %>';
|
2013-04-04 06:26:47 +08:00
|
|
|
Discourse.BaseUri = '<%= Discourse::base_uri "/" %>';
|
2013-02-20 12:37:42 +08:00
|
|
|
Discourse.Environment = '<%= Rails.env %>';
|
2013-10-16 08:31:54 +08:00
|
|
|
Discourse.SiteSettings = PreloadStore.get('siteSettings');
|
2013-11-04 18:52:12 +08:00
|
|
|
Discourse.Router.map(function() { Discourse.routeBuilder.call(this); });
|
2013-02-20 12:37:42 +08:00
|
|
|
Discourse.start()
|
|
|
|
</script>
|
2013-11-28 01:26:27 +08:00
|
|
|
|
2013-12-03 04:57:10 +08:00
|
|
|
<%= javascript_include_tag 'browser-update.js' %>
|