Sha256: fc56e15422b44f8d41b66ccb2bf045d1259017f6d851776cd1df6ac2c1375d2e
Contents?: true
Size: 806 Bytes
Versions: 4
Compression:
Stored size: 806 Bytes
Contents
/*! * UI development toolkit for HTML5 (OpenUI5) * (c) Copyright 2009-2018 SAP SE or an SAP affiliate company. * Licensed under the Apache License, Version 2.0 - see LICENSE.txt. */ sap.ui.define([], function() { "use strict"; /** * QuickView renderer. * @namespace */ var QuickViewRenderer = {}; /** * Renders the HTML for the given control, using the provided {@link sap.ui.core.RenderManager}. * * @param {sap.ui.core.RenderManager} * oRm the RenderManager that can be used for writing to the render output buffer * @param {sap.ui.core.Control} * oQuickView an object representation of the control that should be rendered */ QuickViewRenderer.render = function (oRm, oControl) {}; return QuickViewRenderer; }, /* bExport= */ true);
Version data entries
4 entries across 4 versions & 2 rubygems