Created
May 2, 2014 13:39
-
-
Save whisher/810993e5f1f3626931c4 to your computer and use it in GitHub Desktop.
This file contains 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
.controller('ArticleCreateCtrl', ['$scope', '$state', '$filter', 'Articles', function ($scope, $state, $filter, Articles) { | |
$scope.article = {}; | |
$scope.save = function(){ | |
$scope.article.categories = $filter('strcstoarray')($scope.article.categories); | |
Articles.store($scope.article).then( | |
function(data) { | |
$scope.article = data; | |
return $state.transitionTo('articles'); | |
}, | |
function(err) { | |
throw new Error(err); | |
} | |
); | |
}; | |
}]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment