aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-04 10:49:22 -0700
committerAllan Wang <me@allanwang.ca>2017-06-04 10:49:22 -0700
commit5aac1cda7b1ad561131de109d1f29e8e7b730e82 (patch)
treecb0e0387782c24a667a51bb3583af704c9266f4c /app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
parent4b78e433e1f55b278623c84d1223e42cab875be6 (diff)
downloadfrost-5aac1cda7b1ad561131de109d1f29e8e7b730e82.tar.gz
frost-5aac1cda7b1ad561131de109d1f29e8e7b730e82.tar.bz2
frost-5aac1cda7b1ad561131de109d1f29e8e7b730e82.zip
Remove positions in WebFragment
Diffstat (limited to 'app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt5
1 files changed, 0 insertions, 5 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
index c5ac03ae..f9deb3b8 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostWebView.kt
@@ -27,11 +27,6 @@ class FrostWebView @JvmOverloads constructor(context: Context, attrs: AttributeS
val refresh: SwipeRefreshLayout by bindView(R.id.swipe_refresh)
val web: FrostWebViewCore by bindView(R.id.frost_webview_core)
val progress: ProgressBar by bindView(R.id.progressBar)
- var position: Int
- get() = web.position
- set(value) {
- web.position = value
- }
init {
inflate(getContext(), R.layout.swipe_webview, this)