11 lines
186 B
HTML
11 lines
186 B
HTML
<script>
|
|
var result = false;
|
|
navigator.credentials.get().then(function(data){
|
|
result = data;
|
|
});
|
|
|
|
function credentialsGetBlocked() {
|
|
return result == null;
|
|
}
|
|
</script>
|