@openui5/sap.ui.demokit
Version:
OpenUI5 UI Library sap.ui.demokit
22 lines (18 loc) • 554 B
JavaScript
/*!
* OpenUI5
* (c) Copyright 2009-2019 SAP SE or an SAP affiliate company.
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
*/
sap.ui.getCore().attachInit(function () {
"use strict";
/*global jQuery */
jQuery.sap.includeStyleSheet(jQuery.sap.getResourcePath("sap/ui/demokit/demoapps/css/style.css"));
sap.ui.require(["sap/ui/core/ComponentContainer"], function (ComponentContainer) {
new ComponentContainer({
name : "sap.ui.demokit.demoapps",
settings : {
id : "demoapps"
}
}).placeAt("content");
});
});