mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-27 12:53:13 +03:00
d1957958e3
Aligns all requirements vertically for easier reading + adds single quote standard consistently throughout Ghost, except in long strings.
9 lines
198 B
JavaScript
9 lines
198 B
JavaScript
/*global window, document, Ghost, $, _, Backbone */
|
|
(function () {
|
|
'use strict';
|
|
|
|
Ghost.Models.Themes = Backbone.Model.extend({
|
|
url: Ghost.settings.apiRoot + '/themes'
|
|
});
|
|
|
|
}()); |