aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/fragments
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-22 23:52:55 -0700
committerAllan Wang <me@allanwang.ca>2017-06-22 23:52:55 -0700
commit7bb1de11f0208ac6b6a9e7d8fd3db81490e18daf (patch)
treeb84b8bb1157c2e94df6527b29f542a8f87f26ebe /app/src/main/kotlin/com/pitchedapps/frost/fragments
parent41f3952896fe6235895ba6bbf3cefe0f72907a87 (diff)
downloadfrost-7bb1de11f0208ac6b6a9e7d8fd3db81490e18daf.tar.gz
frost-7bb1de11f0208ac6b6a9e7d8fd3db81490e18daf.tar.bz2
frost-7bb1de11f0208ac6b6a9e7d8fd3db81490e18daf.zip
Fix urls in overlay
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/fragments')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/fragments/WebFragment.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/fragments/WebFragment.kt b/app/src/main/kotlin/com/pitchedapps/frost/fragments/WebFragment.kt
index b7bf3421..dfc3eaad 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/fragments/WebFragment.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/fragments/WebFragment.kt
@@ -85,7 +85,7 @@ class WebFragment : Fragment() {
pauseLoad = false
}
-(position + 1) -> { //we are moving away from this fragment
- pauseLoad = true
+ if (!frostWebView.refresh.isRefreshing) pauseLoad = true
}
}
}