Created
January 22, 2015 09:20
-
-
Save Siron/1b4f5a05b5fdfabaa17a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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