2016-10-12 15:01:48 -04:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
|
|
angular.module('copayApp.directives')
|
2016-10-18 17:38:47 -04:00
|
|
|
.directive('actionSheet', function($rootScope) {
|
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;
|
2016-10-18 17:38:47 -04:00
|
|
|
$rootScope.$broadcast('incomingDataMenu.menuHidden');
|
2016-10-12 15:01:48 -04:00
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
});
|