12345678910111213141516171819202122 |
- 'use strict';
- /**
- * Licensed Materials - Property of IBM
- * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2017
- * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
- */
- define(['./ScaleManager'], function (ScaleManager) {
- var NoScaleManager = ScaleManager.extend({
- init: function init() {
- ScaleManager.inherited('init', this, arguments);
- this.maxScale = 10000;
- }
- });
- return NoScaleManager;
- });
- //# sourceMappingURL=NoScaleManager.js.map
|