Wallet/src/js/directives/actionSheet.js

18 lines
406 B
JavaScript
Raw Normal View History

2016-10-12 15:01:48 -04:00
'use strict';
angular.module('copayApp.directives')
2016-10-22 23:28:24 -03:00
.directive('actionSheet', function() {
2016-10-12 15:01:48 -04:00
return {
restrict: 'E',
templateUrl: 'views/includes/actionSheet.html',
transclude: true,
scope: {
show: '=actionSheetShow',
},
link: function(scope, element, attrs) {
scope.hide = function() {
scope.show = false;
};
}
};
});