mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
15 lines
250 B
JavaScript
15 lines
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'});
|
||
|
|
||
|
});
|
||
|
|
||
|
|
||
|
}());
|