Wallet/src/js/directives/logOptions.js

20 lines
477 B
JavaScript
Raw Normal View History

'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;
};
}
};
});