mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-24 23:48:13 -05:00
20 lines
315 B
JavaScript
20 lines
315 B
JavaScript
|
/*globals window, Backbone */
|
||
|
(function ($) {
|
||
|
"use strict";
|
||
|
|
||
|
var Ghost = {
|
||
|
Layout : {},
|
||
|
View : {},
|
||
|
Collection : {},
|
||
|
Model : {},
|
||
|
|
||
|
settings: {
|
||
|
baseUrl: '/api/v0.1'
|
||
|
},
|
||
|
|
||
|
currentView: null
|
||
|
};
|
||
|
|
||
|
window.Ghost = Ghost;
|
||
|
|
||
|
}());
|