185eee2a6b
closes #64 - adds a full example of using backbone on the frontend remembered to squash this one!
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;
|
|
|
|
}()); |