1234567891011121314151617181920212223242526 |
- "use strict";
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: admin
- * Copyright IBM Corp. 2015, 2018
- * US Government Users Restricted Rights -
- * Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['bi/commons/ui/AccessibleView', 'react', 'react-dom', 'bi/admin/nls/StringResource', 'underscore'], function (BasePane, React, ReactDOM, StringResource, underscore) {
- /**
- * Sample content view that extends the glass AdminPane class
- *
- */
- var ToolkitWrapperPane = BasePane.extend({
- init: function init(options) {
- ToolkitWrapperPane.inherited('init', this, arguments);
- $.extend(this, options);
- },
- render: function render() {
- this.$el.append($("<div/>"));
- return Promise.resolve();
- }
- });
- return ToolkitWrapperPane;
- });
|