2014-05-24 20:50:39 +08:00
|
|
|
<script>
|
|
|
|
Ember.RSVP.configure('onerror', function(e) {
|
2014-08-08 04:52:31 +08:00
|
|
|
// Ignore TransitionAborted exceptions that bubble up
|
|
|
|
if (e && e.message === "TransitionAborted") { return; }
|
|
|
|
|
2014-05-24 20:50:39 +08:00
|
|
|
<% 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);
|
|
|
|
});
|
2015-08-05 01:22:36 +08:00
|
|
|
|
|
|
|
<% if Rails.env.development? || Rails.env.test? %>
|
2015-08-12 05:34:02 +08:00
|
|
|
//Ember.ENV.RAISE_ON_DEPRECATION = true
|
|
|
|
//Ember.LOG_STACKTRACE_ON_DEPRECATION = true
|
2015-08-05 01:22:36 +08:00
|
|
|
<% end %>
|
|
|
|
|
2014-05-24 20:50:39 +08:00
|
|
|
</script>
|
2013-12-03 02:15:31 +08:00
|
|
|
|
2013-02-20 12:37:42 +08:00
|
|
|
<script>
|
2016-02-08 05:44:12 +08:00
|
|
|
<%- if !current_user && flash[:authentication_data] %>
|
|
|
|
require('discourse/routes/application').default.reopen({
|
|
|
|
actions: {
|
|
|
|
didTransition: function() {
|
|
|
|
Em.run.next(function(){
|
2016-02-08 06:53:47 +08:00
|
|
|
Discourse.authenticationComplete(<%=flash[:authentication_data].html_safe%>);
|
2016-02-08 05:44:12 +08:00
|
|
|
});
|
|
|
|
return this._super();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
<%- end %>
|
2016-07-04 01:33:05 +08:00
|
|
|
|
2016-07-05 02:15:51 +08:00
|
|
|
(function() {
|
|
|
|
var ps = require('preload-store').default;
|
|
|
|
|
|
|
|
Discourse.CDN = '<%= Rails.configuration.action_controller.asset_host %>';
|
|
|
|
Discourse.BaseUrl = '<%= RailsMultisite::ConnectionManagement.current_hostname %>'.replace(/:[\d]*$/,"");
|
|
|
|
Discourse.BaseUri = '<%= Discourse::base_uri %>';
|
|
|
|
Discourse.Environment = '<%= Rails.env %>';
|
|
|
|
Discourse.SiteSettings = ps.get('siteSettings');
|
|
|
|
Discourse.LetterAvatarVersion = '<%= LetterAvatar.version %>';
|
|
|
|
I18n.defaultLocale = '<%= SiteSetting.default_locale %>';
|
|
|
|
Discourse.start();
|
|
|
|
Discourse.set('assetVersion','<%= Discourse.assets_digest %>');
|
|
|
|
Discourse.Session.currentProp("disableCustomCSS", <%= loading_admin? %>);
|
2016-11-21 13:46:02 +08:00
|
|
|
<%- if params["safe_mode"] %>
|
2016-12-19 07:11:51 +08:00
|
|
|
Discourse.Session.currentProp("safe_mode", <%= normalized_safe_mode.inspect.html_safe %>);
|
2016-11-21 13:46:02 +08:00
|
|
|
<%- end %>
|
2016-07-05 02:15:51 +08:00
|
|
|
Discourse.HighlightJSPath = <%= HighlightJs.path.inspect.html_safe %>;
|
|
|
|
<%- if SiteSetting.enable_s3_uploads %>
|
|
|
|
<%- if SiteSetting.s3_cdn_url.present? %>
|
|
|
|
Discourse.S3CDN = '<%= SiteSetting.s3_cdn_url %>';
|
|
|
|
<%- end %>
|
|
|
|
Discourse.S3BaseUrl = '<%= Discourse.store.absolute_base_url %>';
|
2015-05-27 10:59:51 +08:00
|
|
|
<%- end %>
|
2016-07-05 02:15:51 +08:00
|
|
|
})();
|
2013-02-20 12:37:42 +08:00
|
|
|
</script>
|
2013-11-28 01:26:27 +08:00
|
|
|
|
2014-07-14 06:47:06 +08:00
|
|
|
<%= script 'browser-update' %>
|