mirror of
https://github.com/nextcloud/passman.git
synced 2024-12-28 02:44:14 +08:00
Remove console.log
This commit is contained in:
parent
8d0f70f357
commit
396ec55453
2 changed files with 3 additions and 2 deletions
|
@ -103,11 +103,10 @@ angular.module('passmanApp')
|
|||
};
|
||||
$scope.selectedtags = [];
|
||||
$rootScope.$on('selected_tags_updated', function (evt, _sTags) {
|
||||
var _selectedTags = []
|
||||
var _selectedTags = [];
|
||||
for(var x = 0; x < _sTags.length; x++){
|
||||
_selectedTags.push(_sTags[x].text)
|
||||
}
|
||||
console.log(_selectedTags)
|
||||
$scope.selectedtags = _selectedTags;
|
||||
});
|
||||
|
||||
|
|
|
@ -16,6 +16,8 @@ angular.module('passmanApp')
|
|||
$location.path('/');
|
||||
};
|
||||
|
||||
// @TODO Show only tag's that exist in the list (when filtered on tag)
|
||||
|
||||
$scope.selectedTags = [];
|
||||
$scope.getTags = function ($query) {
|
||||
console.log(TagService.searchTag($query));
|
||||
|
|
Loading…
Reference in a new issue