ui5flowdev
Version:
UI5FlowDev enables you to manage and run your UI5 applications on a local server with reverse-proxy support. It also provides you the option to build your applications and deploy them to SAP NetWeaver ABAP.
15 lines (12 loc) • 386 B
JavaScript
sap.ui.define([
"com/oprtnl/ui5locserv/controller/BaseController"
], function(Controller) {
"use strict";
return Controller.extend("com.oprtnl.ui5locserv.controller.App", {
onInit: function() {
this.getView().addStyleClass(this.getContentDensityClass());
},
onBeforeRendering: function() {
}
});
});