Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
remove unnecessary query param from find function
Browse files Browse the repository at this point in the history
  • Loading branch information
fyockm committed Oct 16, 2013
1 parent 13f03ec commit 69800ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/js/controllers/articles.js
Expand Up @@ -36,8 +36,8 @@ angular.module('mean.articles').controller('ArticlesController', ['$scope', '$ro
});
};

$scope.find = function(query) {
Articles.query(query, function(articles) {
$scope.find = function() {
Articles.query(function(articles) {
$scope.articles = articles;
});
};
Expand Down

0 comments on commit 69800ab

Please sign in to comment.