mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
e5ce70e175
Saving post as draft, or publishing Added HBS parser for some client tmpls Parsing paginated posts Added grunt watch for hbs parsing on updates
15 lines
No EOL
250 B
JavaScript
15 lines
No EOL
250 B
JavaScript
/*global window, document, Ghost, Backbone, $, _ */
|
|
(function () {
|
|
|
|
"use strict";
|
|
|
|
Ghost.router = new Ghost.Router();
|
|
|
|
$(function () {
|
|
|
|
Backbone.history.start({pushState: true, hashChange: false, root: '/ghost'});
|
|
|
|
});
|
|
|
|
|
|
}()); |