using $filter in controller to sort list of json data by price and added date, in the json data price is stored as string instead of number. I want to sort them by price first then added date, sample angular code in jsfiddle
http://jsfiddle.net/5wkvzbgt/7/
$scope.results = $filter('orderBy')($scope.results, ['-price','added']);