mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-13 22:41:32 -05:00
4334c3deb6
- adds required dependencies to package.json and to bower.json - added required Grunt tasks to transpile and concat ember admin files
11 lines
189 B
JavaScript
Executable file
11 lines
189 B
JavaScript
Executable file
/*global Ember */
|
|
|
|
// ensure we don't share routes between all Router instances
|
|
var Router = Ember.Router.extend();
|
|
|
|
Router.map(function () {
|
|
'use strict';
|
|
|
|
});
|
|
|
|
export default Router;
|