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>
|
|
|
|
|
2014-05-24 20:50:39 +08:00
|
|
|
<script>
|
|
|
|
Ember.RSVP.configure('onerror', function(e) {
|
|
|
|
<% if Rails.env.development? %>
|
2013-12-03 02:15:31 +08:00
|
|
|
if (e) {
|
|
|
|
if (e.message || e.stack) {
|
|
|
|
console.log(e.message);
|
|
|
|
console.log(e.stack);
|
|
|
|
} else {
|
2014-05-09 17:16:56 +08:00
|
|
|
console.log("Uncaught promise: ", e);
|
2013-12-03 02:15:31 +08:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
console.log("A promise failed but was not caught.");
|
|
|
|
}
|
2014-05-24 20:50:39 +08:00
|
|
|
<% end %>
|
|
|
|
window.onerror(e && e.message, null,null,null,e);
|
|
|
|
});
|
|
|
|
</script>
|
2013-12-03 02:15:31 +08:00
|
|
|
|
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');
|
2014-04-15 23:45:45 +08:00
|
|
|
Discourse.Router = Ember.Router.extend({ location: 'discourse-location' });
|
2014-04-30 03:17:40 +08:00
|
|
|
Discourse.Route.mapRoutes();
|
2014-02-12 03:57:14 +08:00
|
|
|
Discourse.start();
|
2014-01-15 09:07:42 +08:00
|
|
|
Discourse.set('assetVersion','<%= Discourse.assets_digest %>');
|
2013-02-20 12:37:42 +08:00
|
|
|
</script>
|
2013-11-28 01:26:27 +08:00
|
|
|
|
2013-12-03 04:57:10 +08:00
|
|
|
<%= javascript_include_tag 'browser-update.js' %>
|