Skip to content

Commit

Permalink
Adding skipped View & Controller
Browse files Browse the repository at this point in the history
  • Loading branch information
d3xter666 committed Jun 8, 2017
1 parent aa7ecef commit 8640d07
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
9 changes: 9 additions & 0 deletions webapp/controller/App.controller.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
sap.ui.define([
"sap/ui/core/mvc/Controller"
], function(Controller) {
"use strict";

return Controller.extend("ui5confUI5Conf.controller.App", {

});
});
4 changes: 4 additions & 0 deletions webapp/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,10 @@
},

"sap.ui5": {
"rootView": {
"viewName": "ui5confUI5Conf.view.App",
"type": "XML"
},
"dependencies": {
"minUI5Version": "1.46.0",
"libs": {
Expand Down
8 changes: 8 additions & 0 deletions webapp/view/App.view.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<mvc:View controllerName="ui5confUI5Conf.controller.App"
xmlns:m="sap.m"
xmlns:mvc="sap.ui.core.mvc"
displayBlock="true"
height="100%">

<m:Text text="Welcome to OpenUI5!"/>
</mvc:View>

0 comments on commit 8640d07

Please sign in to comment.