20 lines
477 B
JavaScript
20 lines
477 B
JavaScript
|
|
'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;
|
||
|
|
};
|
||
|
|
}
|
||
|
|
};
|
||
|
|
});
|