Skip to content

Instantly share code, notes, and snippets.

@Siron
Created January 22, 2015 09:25
Show Gist options
  • Save Siron/8062ddab309d443efedf to your computer and use it in GitHub Desktop.
Save Siron/8062ddab309d443efedf to your computer and use it in GitHub Desktop.
$scope.loadEditor = ->
$scope.data = Stories.get
id: $routeParams.id
, (article) ->
$scope.data.errors = {}
editorData = []
editorData = article.content if article.content
editorData.forEach (block) ->
if block.type == 'quote' and !block.data.text
block.data.text = ''
$scope.editor.store.addData(block)
$scope.editor.createBlocks()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment