aboutsummaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-07-02 23:33:41 -0700
committerAllan Wang <me@allanwang.ca>2017-07-02 23:33:41 -0700
commit0af60659f617c0a28d38298e553749ff6cde79bd (patch)
treebd07daeda0b26433b549b1014000d08d6efbba16 /app
parentc03c7d2c6e1a631a27aedc88b620f557a99fde38 (diff)
downloadfrost-0af60659f617c0a28d38298e553749ff6cde79bd.tar.gz
frost-0af60659f617c0a28d38298e553749ff6cde79bd.tar.bz2
frost-0af60659f617c0a28d38298e553749ff6cde79bd.zip
Update travis
Diffstat (limited to 'app')
-rw-r--r--app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt9
1 files changed, 9 insertions, 0 deletions
diff --git a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
index 3def6d25..4d03afe4 100644
--- a/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
+++ b/app/src/main/kotlin/com/pitchedapps/frost/web/FrostChromeClient.kt
@@ -34,6 +34,15 @@ class FrostChromeClient(webCore: FrostWebViewCore) : WebChromeClient() {
}
override fun onShowFileChooser(webView: WebView, filePathCallback: ValueCallback<Array<Uri>>?, fileChooserParams: FileChooserParams?): Boolean {
+ L.d("On show file chooser")
+ fileChooserParams?.apply {
+ L.d(filenameHint)
+ L.d("$mode")
+ L.d(acceptTypes.contentToString())
+ }
+
return super.onShowFileChooser(webView, filePathCallback, fileChooserParams)
}
+
+
} \ No newline at end of file