PageCollectionView.js 652 B

12345678910111213141516171819
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2013, 2017
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['./LayoutBaseView', '../../../lib/@waca/core-client/js/core-client/utils/EventHelper'], function (BaseLayout) {
  8. var PageCollectionView = null;
  9. PageCollectionView = BaseLayout.extend({
  10. init: function init() {
  11. PageCollectionView.inherited('init', this, arguments);
  12. this._started = true;
  13. }
  14. });
  15. return PageCollectionView;
  16. });
  17. //# sourceMappingURL=PageCollectionView.js.map