Skip to content
Snippets Groups Projects
Commit f60b2bee authored by chris's avatar chris Committed by john
Browse files

enable Persistance Package for now

parent 1a540849
No related branches found
No related tags found
No related merge requests found
...@@ -2,6 +2,7 @@ import { ...@@ -2,6 +2,7 @@ import {
BasePackage, BasePackage,
EmphasisPackage, EmphasisPackage,
ParagraphPackage, ParagraphPackage,
PersistencePackage,
ProseArticle, ProseArticle,
StrongPackage, StrongPackage,
SpellCheckPackage SpellCheckPackage
...@@ -25,6 +26,7 @@ let config = { ...@@ -25,6 +26,7 @@ let config = {
config.import(ParagraphPackage) config.import(ParagraphPackage)
config.import(EmphasisPackage) config.import(EmphasisPackage)
config.import(StrongPackage) config.import(StrongPackage)
config.import(PersistencePackage)
config.import(SpellCheckPackage) config.import(SpellCheckPackage)
config.import(CommentPackage) config.import(CommentPackage)
} }
......
...@@ -80,7 +80,7 @@ class Notes extends Component { ...@@ -80,7 +80,7 @@ class Notes extends Component {
onNotesUpdated (change) { onNotesUpdated (change) {
const notesProvider = this.getProvider() const notesProvider = this.getProvider()
notesProvider.handleDocumentChange(change) notesProvider.handleDocumentChange(change)
// this.el.el.style.height = '95px' this.el.el.style.height = '95px'
} }
dispose () { dispose () {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment