remove pull to refresh when side bar is open
This commit is contained in:
parent
0cca8f6367
commit
04b093900e
3 changed files with 9 additions and 4 deletions
|
|
@ -25,7 +25,7 @@
|
|||
|
||||
<!-- Main content -->
|
||||
|
||||
<ion-side-menu-content drag-content="index.isCordova">
|
||||
<ion-side-menu-content drag-content="index.isCordova && index.allowSideBar">
|
||||
<div notifications="right top"></div>
|
||||
<div id="sectionContainer">
|
||||
<div id="mainSection">
|
||||
|
|
|
|||
|
|
@ -35,9 +35,10 @@
|
|||
-->
|
||||
|
||||
<ion-content id="walletHome" class="walletHome tab-view tab-in" scroll="false" >
|
||||
<ion-content overflow-scroll="true">
|
||||
<ion-content overflow-scroll="true" on-release="index.allowSideBar = true; index.allowPullToRefresh = true;" on-drag-right="index.allowRefresher()">
|
||||
<ion-refresher
|
||||
ng-if="index.isCordova"
|
||||
ng-if="index.allowPullToRefresh && index.isCordova"
|
||||
on-pulling="index.allowSideBar = false"
|
||||
pulling-icon="ion-ios-refresh"
|
||||
spinner="ios-small"
|
||||
on-refresh="index.updateAll({triggerTxUpdate: true})">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue