Wallet/src/js/directives/actionSheet.js
2016-10-18 17:38:47 -04:00

19 lines
480 B
JavaScript

'use strict';
angular.module('copayApp.directives')
.directive('actionSheet', function($rootScope) {
return {
restrict: 'E',
templateUrl: 'views/includes/actionSheet.html',
transclude: true,
scope: {
show: '=actionSheetShow',
},
link: function(scope, element, attrs) {
scope.hide = function() {
scope.show = false;
$rootScope.$broadcast('incomingDataMenu.menuHidden');
};
}
};
});