UNPKG

@owstack/ows-wallet-applet-coinbase

Version:

An OWS Wallet applet plugin for Coinbase.

16 lines (14 loc) 432 B
'use strict'; angular.module('owsWalletPlugin.directives').directive('showTabs', function($rootScope, $timeout) { return { link: function(scope, elem, attrs, ctrl) { scope.$on("$ionicView.enter", function(event, data) { if (!attrs.showTabs || (attrs.showTabs == 'true')) { $rootScope.hideTabs = ''; } else { $rootScope.hideTabs = 'tabs-item-hide'; } }); } }; });