https://github.com/root-project/root
Raw File
Tip revision: e1e22198f55729f46f81f5274022e287e405ce57 authored by Axel Naumann on 10 January 2020, 11:51:51 UTC
Update ROOT version files to v6.19/02.
Tip revision: e1e2219
Component.js
sap.ui.define([
   'sap/ui/core/UIComponent' 
], function(UIComponent) {
   "use strict";

   var Component = UIComponent.extend("rootui5.canv.Component", {
      metadata : {
         manifest: "json"
      },
      init: function() {
         UIComponent.prototype.init.apply(this, arguments);
         // this.getRouter().initialize();
      }
   });

   return Component;

});
back to top