0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/client
David Arvelo eb949aafae Reach Editor parity with Ember
closes #2426, closes #2781, closes #2913
- Concatenate vendor files on change of js in core/shared/
- Add all the markerManager stuff to its own mixin
- make markers a shared object for all that mix it in. makes it easier to use helper functions in different modules
- add getMarkdown method, returns object with two keys holding the markdown: one with markers, the other without
- Clear markers when codemirror is destroyed
- make Editor subcomponents communicate through the Editor Controller
- Set Codemirror and html preview shared scrolling
- Set CodeMirror, html preview css scroll class with util
- Create 'scratch' property in Editor controller; prevents a model save wiping image markers due to markdown bindings
- Add editor and html preview actions to handle img upload start/finish
- disable codemirror when an image is being uploaded, enables on success or failure
- Fix editor wordcount when there are 0 words
- Add modal dialog when transitioning out of the editor with an unsaved post
- Add window.onbeforeunload handling with `.unloadDirtyMessage()` on editor controller
- and various other things
2014-06-13 18:12:03 -04: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 Reach Editor parity with Ember 2014-06-13 18:12:03 -04: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 Make exports consitent. 2014-06-09 13:58:35 -04:00
mixins Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
models Refactored PostSettingsMenuController 2014-06-13 12:14:58 -06:00
routes Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
serializers Fix serializing/deserializing Tags on save from the Editor 2014-06-13 02:44:45 -04:00
templates Reach Editor parity with Ember 2014-06-13 18:12:03 -04:00
transforms Changed ember models to use moment for dates 2014-06-05 10:30:28 -06:00
utils Refactored PostSettingsMenuController 2014-06-13 12:14:58 -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