NoScaleManager.js 540 B

12345678910111213141516171819202122
  1. 'use strict';
  2. /**
  3. * Licensed Materials - Property of IBM
  4. * IBM Cognos Products: BI Cloud (C) Copyright IBM Corp. 2017
  5. * US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  6. */
  7. define(['./ScaleManager'], function (ScaleManager) {
  8. var NoScaleManager = ScaleManager.extend({
  9. init: function init() {
  10. ScaleManager.inherited('init', this, arguments);
  11. this.maxScale = 10000;
  12. }
  13. });
  14. return NoScaleManager;
  15. });
  16. //# sourceMappingURL=NoScaleManager.js.map