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>
|
|
|
|
|
|
|
|
|
|
|
|
<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-10-16 08:31:54 +08:00
|
|
|
Discourse.SiteSettings = PreloadStore.get('siteSettings');
|
2013-03-06 03:52:35 +08:00
|
|
|
Discourse.Router.map(function() {
|
2013-09-19 23:26:43 +08:00
|
|
|
Discourse.routeBuilder.call(this);
|
2013-02-20 12:37:42 +08:00
|
|
|
});
|
|
|
|
Discourse.start()
|
|
|
|
</script>
|