123456789101112131415161718192021222324252627 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI
- * (C) Copyright IBM Corp. 2016, 2019
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['../../lib/@waca/dashboard-common/dist/core/Model', './ConditionalPalette'], function (Model, ConditionalPalette) {
- /**
- * The conditional attributes of the widget
- */
- // Declare the class
- var Conditions = Model.extend({
- nestedModels: {
- palette: ConditionalPalette
- },
- whitelistAttrs: ['palette'],
- init: function init() /*values, options */{
- Conditions.inherited('init', this, arguments);
- }
- });
- return Conditions;
- });
- //# sourceMappingURL=Conditions.js.map
|