mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-04 13:30:02 -04:00
8 lines
260 B
HTML
8 lines
260 B
HTML
|
|
{% macro webauthn_api_check() %}
|
||
|
|
<script>
|
||
|
|
if ('credentials' in window.navigator) {
|
||
|
|
document.body.className = ((document.body.className) ? document.body.className + ' webauthn-api-enabled' : 'webauthn-api-enabled');
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
{% endmacro %}
|