Wallet/src/js/directives/hideTabs.js

13 lines
309 B
JavaScript
Raw Normal View History

2016-10-16 21:51:50 -03:00
'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 = '';
});
}
};
});