1234567891011121314151617181920212223242526272829303132 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2013, 2017
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['./LayoutBaseView', 'jquery', '../../../../lib/@waca/dashboard-common/dist/ui/AuthoringToolbar', '../../../../lib/@waca/core-client/js/core-client/utils/EventHelper'], function (BaseClass, $, Toolbar) {
- var PageCollectionView = null;
- PageCollectionView = BaseClass.extend({
- init: function init(options) {
- PageCollectionView.inherited('init', this, arguments);
- this.toolbar = options.toolbar ? options.toolbar : new Toolbar({ placement: 'bottom', container: $('body') });
- this._getViewId = this.consumeView._getViewId.bind(this.consumeView);
- this.htmlTemplate = options.services.getSvcSync('htmlTemplates');
- },
- destroy: function destroy() {
- PageCollectionView.inherited('destroy', this, arguments);
- }
- });
- return PageCollectionView;
- });
- //# sourceMappingURL=PageCollectionView.js.map
|