Ghost/core/client
Matt Enlow e10c0f20cf Implement Shortcuts in Ember
Closes #2988, #2752
Ref #1463, #2984,
 # Shortcuts via Keymaster
- Added KeyMaster to bower dependencies. KeyMaster is a minimal keyboard
  shortcuts library.
- Added `ShortcutsRouteMixin` for routes that will use shortcuts.
  Currently, only routes can have shortcuts. See the extensive comment
  at the top of `core/client/mixins/shortcuts-route.js` for a
  description of how to implement shortcuts.

 ## Other Changes
- Injected popover service into ApplicationRoute
- Created `EditorRouteBase` mixin for the `editor.new` and
  `editor.edit` routes to mixin.
- `StyleBodyMixin` now calls `this._super()` on `activate` and
  `deactivate` to play nicely with other mixins.

 ## Shortcuts and Stubs implemented
 #### Application-Wide
- `'esc':'closePopups'` shortcut **stub** to close popovers,
 modals, and notifcations

 #### Editor Shortcuts
- `'ctrl+s, command+s': 'save'` note that `command` is the
  `meta` key.
- `'ctrl+alt+p': 'publish'`
- `'ctrl+alt+z': 'toggleZenMode'`
2014-06-19 15:07:42 -06:00
..
adapters Make exports consitent. 2014-06-09 13:58:35 -04:00
assets Use loader.js from bower. 2014-06-08 19:39:45 -04:00
components Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
controllers Fix slug create and update logic for posts 2014-06-16 14:09:46 +00:00
fixtures Ember: jshint single quotes 2014-06-02 20:12:02 +01:00
helpers Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
initializers Implement Shortcuts in Ember 2014-06-19 15:07:42 -06:00
mixins Implement Shortcuts in Ember 2014-06-19 15:07:42 -06:00
models Refactored PostSettingsMenuController 2014-06-13 12:14:58 -06:00
routes Implement Shortcuts in Ember 2014-06-19 15:07:42 -06:00
serializers Fix serializing/deserializing Tags on save from the Editor 2014-06-13 02:44:45 -04:00
templates Merge pull request #2895 from appleYaks/editor-parity 2014-06-14 18:43:36 +02:00
transforms Changed ember models to use moment for dates 2014-06-05 10:30:28 -06:00
utils Implement Shortcuts in Ember 2014-06-19 15:07:42 -06:00
views Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
.jshintrc Ember: jshint single quotes 2014-06-02 20:12:02 +01:00
app.js Ember Data with Posts 2014-05-29 07:42:51 -05:00
README.md Adding READMEs to clarify the 2 client folders 2014-05-07 22:51:51 +01:00
router.js Refactored Editor Routing 2014-06-11 12:18:44 -06:00

What's this?

This is the shiny new Ghost admin UI built in Ember.js. It gets served if you visit the URL /ghost/ember/.

We're currently in the process of building this awesome new UI to replace the old one which was written in backbone, lives in the /clientold/ folder and is still served when you visit the URL /ghost/.

In short, we currently have 2 admins:

  • Old, Backbone Admin UI lives in /clientold/ and is served from /ghost/
  • New, Ember Admin UI lives in /client/ and is served from /ghost/ember/

For more information, please read the Ember admin wiki page