0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00

Add initial client unit test.

This commit is contained in:
Robert Jackson 2014-11-26 23:06:24 -05:00
parent a1ab6b4a13
commit 404743f170

View file

@ -1,4 +1,6 @@
// Loader to create the Ember.js application // Loader to create the Ember.js application
/*global require */ /*global require */
window.App = require('ghost/app')['default'].create(); if (!window.disableBoot) {
window.App = require('ghost/app')['default'].create();
}