mirror of
https://github.com/abap2UI5/abap2UI5.git
synced 2025-04-30 07:16:10 +08:00

* update * update ui52abap auto taransformation * update * commit changes * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * update * Update abaplint.jsonc * update * update * update * update * update * update * update * update * Update abaplint.jsonc * update * update * update * update * update
19 lines
438 B
JavaScript
19 lines
438 B
JavaScript
sap.ui.define([
|
|
"sap/ui/model/json/JSONModel",
|
|
"sap/ui/Device"
|
|
],
|
|
function (JSONModel, Device) {
|
|
"use strict";
|
|
|
|
return {
|
|
/**
|
|
* Provides runtime info for the device the UI5 app is running on as JSONModel
|
|
*/
|
|
createDeviceModel: function () {
|
|
var oModel = new JSONModel(Device);
|
|
oModel.setDefaultBindingMode("OneWay");
|
|
return oModel;
|
|
}
|
|
};
|
|
|
|
}); |