Skip to content

Instantly share code, notes, and snippets.

@Siron
Created January 22, 2015 09:20
Show Gist options
  • Save Siron/1b4f5a05b5fdfabaa17a to your computer and use it in GitHub Desktop.
Save Siron/1b4f5a05b5fdfabaa17a to your computer and use it in GitHub Desktop.
$scope.buildForSave = ->
editorData = []
$scope.editor.blocks.forEach (block) ->
$scope.editor.saveBlockStateToStore block
unless _.isEmpty(block.blockStorage.data)
editorData.push
position: block.$el.index()
type: block.blockStorage.type
data: block.blockStorage.data
editorData = _.sortBy(editorData, (block) -> return block.position)
$scope.contentToSave.content = editorData
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment