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
|
|
|
};
|
|
|
|
|
|
|
|
var assetPath = function(asset){
|
2013-02-26 00:42:20 +08:00
|
|
|
return map[asset];
|
2013-02-20 12:37:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
return assetPath;
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
2013-02-27 16:00:49 +08:00
|
|
|
<%# load the selected locale before any other scripts %>
|
|
|
|
<%= javascript_include_tag "locales/#{I18n.locale}" %>
|
2013-04-11 14:24:08 +08:00
|
|
|
<%= javascript_include_tag "application" %>
|
2013-05-02 15:22:27 +08:00
|
|
|
<%- if staff? %>
|
2013-04-11 14:24:08 +08:00
|
|
|
<%= javascript_include_tag "admin"%>
|
|
|
|
<%- end %>
|
2013-02-20 12:37:42 +08:00
|
|
|
|
|
|
|
<script>
|
|
|
|
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-03-06 03:52:35 +08:00
|
|
|
Discourse.Router.map(function() {
|
2013-02-20 12:37:42 +08:00
|
|
|
return Discourse.routeBuilder.call(this);
|
|
|
|
});
|
|
|
|
Discourse.start()
|
|
|
|
</script>
|