Wallet/src/js/directives/hideTabs.js
Gustavo Maximiliano Cortez e0dff39895
Fix tab-bar after send tx
2016-10-17 14:09:54 -03:00

15 lines
386 B
JavaScript

'use strict';
angular.module('copayApp.directives')
.directive('hideTabs', function($rootScope, $timeout) {
return {
restrict: 'A',
link: function($scope, $el) {
$scope.$on("$ionicView.beforeEnter", function(event, data){
$timeout(function() {
$rootScope.hideTabs = 'tabs-item-hide';
$rootScope.$apply();
});
});
}
};
});