PlaceHolderWidget.js 599 B

12345678910111213141516171819202122
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2018
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['../../../lib/@waca/dashboard-common/dist/ui/WidgetBase'], function (WidgetBase) {
  8. /**
  9. * The PlaceHolder widget
  10. */
  11. var PlaceHolderWidget = WidgetBase.extend({
  12. init: function init() {
  13. PlaceHolderWidget.inherited('init', this, arguments);
  14. }
  15. });
  16. return PlaceHolderWidget;
  17. });
  18. //# sourceMappingURL=PlaceHolderWidget.js.map