0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-24 23:48:13 -05:00
ghost/core/admin/assets/js/init.js

20 lines
315 B
JavaScript
Raw Normal View History

/*globals window, Backbone */
(function ($) {
"use strict";
var Ghost = {
Layout : {},
View : {},
Collection : {},
Model : {},
settings: {
baseUrl: '/api/v0.1'
},
currentView: null
};
window.Ghost = Ghost;
}());