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-04-28 20:02:04 -04: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-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-04-11 02:24:08 -04:00
|
|
|
<%= javascript_include_tag "application" %>
|
2013-05-02 03:22:27 -04:00
|
|
|
<%- if staff? %>
|
2013-04-11 02:24:08 -04:00
|
|
|
<%= javascript_include_tag "admin"%>
|
|
|
|
<%- end %>
|
2013-02-19 23:37:42 -05:00
|
|
|
|
|
|
|
<script>
|
|
|
|
Discourse.CDN = '<%= Rails.configuration.action_controller.asset_host %>';
|
|
|
|
Discourse.BaseUrl = '<%= RailsMultisite::ConnectionManagement.current_hostname %>';
|
2013-04-03 18:26:47 -04:00
|
|
|
Discourse.BaseUri = '<%= Discourse::base_uri "/" %>';
|
2013-02-19 23:37:42 -05:00
|
|
|
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>
|