mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:51:50 +08:00
f661fa609e
http://meta.discourse.org/t/is-it-better-for-discourse-to-use-javascript-or-coffeescript/3153
19 lines
287 B
JavaScript
19 lines
287 B
JavaScript
|
|
/* These will help us migrate up to the new ember's default behavior
|
|
*/
|
|
|
|
|
|
(function() {
|
|
|
|
window.ENV = {
|
|
CP_DEFAULT_CACHEABLE: true,
|
|
VIEW_PRESERVES_CONTEXT: true,
|
|
MANDATORY_SETTER: false
|
|
};
|
|
|
|
window.Discourse = {};
|
|
|
|
window.Discourse.SiteSettings = {};
|
|
|
|
}).call(this);
|