Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created May 26, 2018 17:37
Show Gist options
  • Save sajjadyousefnia/390e14433f95a41cbbe269dfdf0bf972 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/390e14433f95a41cbbe269dfdf0bf972 to your computer and use it in GitHub Desktop.
// Yack!
with(webview.settings) {
this?.javaScriptEnabled = true
this?.databaseEnabled = true
}
}
// Nice.
webview.settings?.run {
javaScriptEnabled = true
databaseEnabled = true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment