mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 01:32:23 +08:00
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);
|