mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-24 08:09:13 -05:00
43 lines
1.2 KiB
Text
43 lines
1.2 KiB
Text
<script>
|
|
window.assetPath = (function(){
|
|
|
|
// TODO: automate this to grab from the manifest, Rails voodoo should be able to get it
|
|
var map = {
|
|
'defer/html-sanitizer-bundle': <%= asset_path('defer/html-sanitizer-bundle.js').inspect.html_safe %>
|
|
};
|
|
|
|
var assetPath = function(asset){
|
|
return map[asset];
|
|
};
|
|
|
|
return assetPath;
|
|
})();
|
|
</script>
|
|
|
|
<%# load the selected locale before any other scripts %>
|
|
<%= javascript_include_tag "locales/#{I18n.locale}" %>
|
|
|
|
<%- if mini_profiler_enabled? %>
|
|
<%- Rack::MiniProfiler.step "application" do %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%-end%>
|
|
|
|
<%- Rack::MiniProfiler.step "admin" do %>
|
|
<%= javascript_include_tag "admin"%>
|
|
<%-end%>
|
|
<%- else %>
|
|
<%= javascript_include_tag "application" %>
|
|
<%- if admin? %>
|
|
<%= javascript_include_tag "admin"%>
|
|
<%- end %>
|
|
<%- end%>
|
|
|
|
<script>
|
|
Discourse.CDN = '<%= Rails.configuration.action_controller.asset_host %>';
|
|
Discourse.BaseUrl = '<%= RailsMultisite::ConnectionManagement.current_hostname %>';
|
|
Discourse.Environment = '<%= Rails.env %>';
|
|
Discourse.Router.map(function() {
|
|
return Discourse.routeBuilder.call(this);
|
|
});
|
|
Discourse.start()
|
|
</script>
|