KpiControl.js 743 B

1234567891011121314151617181920212223242526
  1. 'use strict';
  2. /**
  3. *+------------------------------------------------------------------------+
  4. *| Licensed Materials - Property of IBM
  5. *| IBM Cognos Products: Dashboard
  6. *| (C) Copyright IBM Corp. 2019
  7. *|
  8. *| US Government Users Restricted Rights - Use, duplication or disclosure
  9. *| restricted by GSA ADP Schedule Contract with IBM Corp.
  10. *+------------------------------------------------------------------------+
  11. */
  12. define(['underscore', '../../../../lib/@waca/core-client/js/core-client/ui/core/Class'], function (_, Class) {
  13. 'use strict';
  14. var KpiControl = Class.extend({
  15. domNode: null,
  16. init: function init() {
  17. _.extend(this, arguments[0]);
  18. }
  19. });
  20. return KpiControl;
  21. });
  22. //# sourceMappingURL=KpiControl.js.map