mirror of
https://github.com/nextcloud/passman.git
synced 2025-11-12 07:01:35 +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 = [];
|
$scope.selectedtags = [];
|
||||||
$rootScope.$on('selected_tags_updated', function (evt, _sTags) {
|
$rootScope.$on('selected_tags_updated', function (evt, _sTags) {
|
||||||
var _selectedTags = []
|
var _selectedTags = [];
|
||||||
for(var x = 0; x < _sTags.length; x++){
|
for(var x = 0; x < _sTags.length; x++){
|
||||||
_selectedTags.push(_sTags[x].text)
|
_selectedTags.push(_sTags[x].text)
|
||||||
}
|
}
|
||||||
console.log(_selectedTags)
|
|
||||||
$scope.selectedtags = _selectedTags;
|
$scope.selectedtags = _selectedTags;
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,8 @@ angular.module('passmanApp')
|
||||||
$location.path('/');
|
$location.path('/');
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// @TODO Show only tag's that exist in the list (when filtered on tag)
|
||||||
|
|
||||||
$scope.selectedTags = [];
|
$scope.selectedTags = [];
|
||||||
$scope.getTags = function ($query) {
|
$scope.getTags = function ($query) {
|
||||||
console.log(TagService.searchTag($query));
|
console.log(TagService.searchTag($query));
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue