removed unused function 'endsWithWildcard', fixes jshint error

This commit is contained in:
Torkel Ödegaard 2014-04-28 20:08:25 +02:00
parent 9c5674a076
commit 0dae8f9977

View File

@ -90,13 +90,5 @@ function (angular, app, _) {
$rootScope.$broadcast('render');
};
function endsWithWildcard(query) {
if (query.length === 0) {
return false;
}
return query[query.length - 1] === '*';
}
});
});