13 lines
309 B
JavaScript
13 lines
309 B
JavaScript
|
|
'use strict';
|
||
|
|
angular.module('copayApp.directives')
|
||
|
|
.directive('hideTabs', function($rootScope) {
|
||
|
|
return {
|
||
|
|
restrict: 'A',
|
||
|
|
link: function($scope, $el) {
|
||
|
|
$rootScope.hideTabs = 'tabs-item-hide';
|
||
|
|
$scope.$on('$destroy', function() {
|
||
|
|
$rootScope.hideTabs = '';
|
||
|
|
});
|
||
|
|
}
|
||
|
|
};
|
||
|
|
});
|