Skip to content

Instantly share code, notes, and snippets.

@sajjadyousefnia
Created July 9, 2018 09:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sajjadyousefnia/307530313c346b721b16ae69e9fbdcb7 to your computer and use it in GitHub Desktop.
Save sajjadyousefnia/307530313c346b721b16ae69e9fbdcb7 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