0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-02-17 23:44:39 -05:00
ghost/core/client
Matt Enlow 8393c01be9 Implement Markdown Shortcuts
Closes #2984, #3020
Ref #1463, #3019

 #### Shortcut Values
Shortcut values can now be either strings (as before) or objects like
{action:string, options:hash}.
 #### Markdown shortcuts added
- 'ctrl+alt+u' strkethrough
- 'ctrl+alt+1' h1
- 'ctrl+alt+2' h2
- 'ctrl+alt+3' h3
- 'ctrl+alt+4' h4
- 'ctrl+alt+5' h5
- 'ctrl+alt+6' h6
- 'ctrl+shift+i' image
- 'ctrl/command+k' link
- 'ctrl+l' list

Left behind commented out stubs for additional markdown shortcuts.

 #### Editor Controllers (New and Edit)
- Moved shared init function into editor-base-controller.
- Removed MarkerManager mixin from editor controllers as it's included in
  the base.
2014-06-21 15:10:46 -06:00
..
adapters Convert general settings page to ember data 2014-06-20 04:38:41 +00:00
assets Use loader.js from bower. 2014-06-08 19:39:45 -04:00
components Implement Markdown Shortcuts 2014-06-21 15:10:46 -06:00
controllers Implement Markdown Shortcuts 2014-06-21 15:10:46 -06:00
fixtures Ember Admin - Upload Modal 2014-06-17 16:18:32 -04:00
helpers Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
html Temporary HTML for the User Management screen & Setup screen 2014-06-18 14:00:47 +01:00
initializers Implement Shortcuts in Ember 2014-06-19 15:07:42 -06:00
mixins Implement Markdown Shortcuts 2014-06-21 15:10:46 -06:00
models Removing unneeded file 2014-06-21 18:45:01 +01:00
routes Merge pull request #3003 from jaswilli/issue-2846-settings 2014-06-21 15:25:23 +01:00
serializers Convert general settings page to ember data 2014-06-20 04:38:41 +00:00
templates Convert general settings page to ember data 2014-06-20 04:38:41 +00:00
transforms Changed ember models to use moment for dates 2014-06-05 10:30:28 -06:00
utils Implement Markdown Shortcuts 2014-06-21 15:10:46 -06:00
validators Add Validations Layer and Post Validations 2014-06-21 00:12:55 -04:00
views Cleanup Misc Ember Code 2014-06-17 14:59:15 -06:00
.jshintrc Functional tests for Ember 2014-06-20 15:20:59 +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