Skip to content

Instantly share code, notes, and snippets.

@whisher
Created May 2, 2014 13:39
Show Gist options
  • Save whisher/810993e5f1f3626931c4 to your computer and use it in GitHub Desktop.
Save whisher/810993e5f1f3626931c4 to your computer and use it in GitHub Desktop.
.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