custom check-bar for filtered logs
This commit is contained in:
parent
635d35ab87
commit
79350b44b3
7 changed files with 126 additions and 32 deletions
|
|
@ -9,12 +9,17 @@ angular.module('copayApp.directives')
|
|||
scope: {
|
||||
show: '=logOptionsShow',
|
||||
options: '=logOptions',
|
||||
title: '=logOptionsTitle'
|
||||
fillClass: '=logOptionsFillClass',
|
||||
title: '=logOptionsTitle',
|
||||
onSelect: '=logOptionsOnSelect'
|
||||
},
|
||||
link: function(scope, element, attrs) {
|
||||
scope.hide = function() {
|
||||
scope.show = false;
|
||||
};
|
||||
scope.getFillClass = function(index) {
|
||||
scope.onSelect(index);
|
||||
};
|
||||
}
|
||||
};
|
||||
});
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue