1234567891011121314151617181920212223242526 |
- 'use strict';
- /**
- *+------------------------------------------------------------------------+
- *| Licensed Materials - Property of IBM
- *| IBM Cognos Products: Dashboard
- *| (C) Copyright IBM Corp. 2019
- *|
- *| US Government Users Restricted Rights - Use, duplication or disclosure
- *| restricted by GSA ADP Schedule Contract with IBM Corp.
- *+------------------------------------------------------------------------+
- */
- define(['underscore', '../../../../lib/@waca/core-client/js/core-client/ui/core/Class'], function (_, Class) {
- 'use strict';
- var KpiControl = Class.extend({
- domNode: null,
- init: function init() {
- _.extend(this, arguments[0]);
- }
- });
- return KpiControl;
- });
- //# sourceMappingURL=KpiControl.js.map
|