TimelineHighlightEditWrapperView.js 885 B

123456789101112131415161718192021222324252627
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2017, 2018
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['dashboard-analytics/dialogs/CommonViewWrapper', './NonNumericHighlightFilterController'], function (View, FilterController) {
  8. var Wrapper = View.extend({
  9. className: 'timelineHighlightViewWrapper',
  10. init: function init() {
  11. Wrapper.inherited('init', this, arguments);
  12. },
  13. // @override: Need to preload to have the Flyout sized properly.
  14. preload: function preload() {
  15. this.options.commonView = this;
  16. this.filterController = new FilterController(this.options);
  17. return this.filterController.initialize();
  18. }
  19. });
  20. return Wrapper;
  21. });
  22. //# sourceMappingURL=TimelineHighlightEditWrapperView.js.map