2013-02-19 23:37:42 -05:00
|
|
|
<script>
|
|
|
|
window.assetPath = (function(){
|
|
|
|
|
|
|
|
// TODO: automate this to grab from the manifest, Rails voodoo should be able to get it
|
|
|
|
var map = {
|
2013-02-26 10:47:23 -05:00
|
|
|
'defer/html-sanitizer-bundle': <%= asset_path('defer/html-sanitizer-bundle.js').inspect.html_safe %>
|
2013-02-19 23:37:42 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
var assetPath = function(asset){
|
2013-02-25 11:42:20 -05:00
|
|
|
return map[asset];
|
2013-02-19 23:37:42 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
return assetPath;
|
|
|
|
})();
|
|
|
|
</script>
|
|
|
|
|
2013-02-27 03:00:49 -05:00
|
|
|
<%# load the selected locale before any other scripts %>
|
|
|
|
<%= javascript_include_tag "locales/#{I18n.locale}" %>
|
|
|
|
|
2013-02-19 23:37:42 -05:00
|
|
|
<%- if mini_profiler_enabled? %>
|
|
|
|
<%- Rack::MiniProfiler.step "application" do %>
|
|
|
|
<%= javascript_include_tag "application" %>
|
|
|
|
<%-end%>
|
|
|
|
|
2013-02-25 11:42:20 -05:00
|
|
|
<%- Rack::MiniProfiler.step "admin" do %>
|
2013-02-19 23:37:42 -05:00
|
|
|
<%= 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 %>';
|
2013-03-05 14:52:35 -05:00
|
|
|
Discourse.Router.map(function() {
|
2013-02-19 23:37:42 -05:00
|
|
|
return Discourse.routeBuilder.call(this);
|
|
|
|
});
|
|
|
|
Discourse.start()
|
|
|
|
</script>
|