Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
weinre webkit angular fix
<script>
function whackWebkitMatchesSelector() {
var oldMatches = Element.prototype.webkitMatchesSelector
function newMatches(selector) {
try {
return oldMatches.call(this, selector)
}
catch (err) {
return false
}
}
Element.prototype.webkitMatchesSelector = newMatches
}
whackWebkitMatchesSelector()
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment