grunt-tdevopsui5
Version:
UI5 tools for build/deploy/version managment of ui5 applicaton
13 lines (12 loc) • 370 B
JavaScript
sap.ui.define(['pslint/appid/controller/BaseController'], function(BaseController) {
'use strict';
return BaseController.extend('pslint.appid.controller.App', {
onInit: function() {
var oViewModel = new sap.ui.model.json.JSONModel({
busy: false,
delay: 0,
});
this.setModel(oViewModel, 'appModel');
},
});
});