Ghost/core/admin/assets/js/init.js
ErisDS 185eee2a6b Implementing backbone for the blog / content view
closes #64 - adds a full example of using backbone on the frontend
remembered to squash this one!
2013-05-31 06:58:20 +01:00

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;
}());