@openui5/sap.ui.demokit
Version:
OpenUI5 UI Library sap.ui.demokit
27 lines (22 loc) • 553 B
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
(function() {
/*global document,prettyPrint */
function prettify() {
if ( typeof prettyPrint === 'function' ) {
prettyPrint();
}
}
function onLoaded() {
document.removeEventListener( "DOMContentLoaded", onLoaded, false );
prettify();
}
if ( document.readyState === 'complete' ) {
prettify();
} else {
document.addEventListener( "DOMContentLoaded", onLoaded, false );
}
}());