2013-09-15 06:13:06 -05:00
|
|
|
/*global window, document, Ghost, $, _, Backbone */
|
|
|
|
(function () {
|
2013-09-24 05:46:30 -05:00
|
|
|
'use strict';
|
2013-09-15 06:13:06 -05:00
|
|
|
|
|
|
|
Ghost.Models.Themes = Backbone.Model.extend({
|
|
|
|
url: Ghost.settings.apiRoot + '/themes'
|
|
|
|
});
|
|
|
|
|
|
|
|
}());
|