mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 18:36:35 +08:00
22 lines
478 B
JavaScript
22 lines
478 B
JavaScript
// hacks for ember, this sets up our app for testing
|
|
|
|
(function(){
|
|
|
|
var currentWindowOnload = window.onload;
|
|
window.onload = function() {
|
|
if (currentWindowOnload) {
|
|
currentWindowOnload();
|
|
}
|
|
|
|
$('<div id="main"><div class="rootElement"></div></div>').appendTo($('body')).hide();
|
|
|
|
Discourse.SiteSettings = {}
|
|
|
|
Discourse.Router.map(function() {
|
|
this.route("jasmine",{path: "/jasmine"});
|
|
Discourse.routeBuilder.apply(this)
|
|
});
|
|
}
|
|
|
|
})()
|