oidc-lib
Version:
A library for creating OIDC Service Providers
18 lines (15 loc) • 371 B
JavaScript
/*!
* Copyright (c) 2019-2020 Digital Bazaar, Inc. All rights reserved.
*/
;
/**
* Miscellaneous Javascript utility and helper functions used in the .html
* pages in this demo.
*/
function onDocumentReady(fn) {
if(document.readyState !== 'loading') {
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}