Enhance logging with timestamps and filtering.

This commit is contained in:
Andy Phillipson 2017-07-14 15:21:15 -04:00
commit b7cfd86f22
No known key found for this signature in database
GPG key ID: D813A67D567D6C88
14 changed files with 257 additions and 13 deletions

View file

@ -0,0 +1,20 @@
'use strict';
angular.module('copayApp.directives')
.directive('logOptions', function($timeout) {
return {
restrict: 'E',
templateUrl: 'views/includes/logOptions.html',
transclude: true,
scope: {
show: '=logOptionsShow',
options: '=logOptions',
title: '=logOptionsTitle'
},
link: function(scope, element, attrs) {
scope.hide = function() {
scope.show = false;
};
}
};
});