@owstack/ows-wallet-applet-coinbase
Version:
An OWS Wallet applet plugin for Coinbase.
16 lines (14 loc) • 438 B
JavaScript
;
angular.module('owsWalletPlugin.directives').directive('hideTabs', function($rootScope, $timeout) {
return {
link: function(scope, elem, attrs, ctrl) {
scope.$on("$ionicView.beforeEnter", function(event, data) {
if (!attrs.hideTabs || (attrs.hideTabs == 'true')) {
$rootScope.hideTabs = 'tabs-item-hide';
} else {
$rootScope.hideTabs = '';
}
});
}
};
});