%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/cwd/html/ppaobm/backend/web/assets/16c36a2e/es-modules/mixins/ |
Upload File : |
/** * (c) 2010-2019 Daniel Studencki * * License: www.highcharts.com/license */ 'use strict'; import H from '../parts/Globals.js'; import '../parts/Utilities.js'; var error = H.error; var requiredIndicatorMixin = { /** * Check whether given indicator is loaded, else throw error. * @param {function} indicator Indicator constructor function. * @param {string} requiredIndicator required indicator type. * @param {string} type Type of indicator where function was called (parent). * @param {function} callback Callback which is triggered if the given * indicator is loaded. Takes indicator as * an argument. * @param {string} errMessage Error message that will be logged in console. * @returns {boolean} Returns false when there is no required indicator loaded. */ isParentLoaded: function ( indicator, requiredIndicator, type, callback, errMessage ) { if (indicator) { return callback ? callback(indicator) : true; } error( errMessage || this.generateMessage(type, requiredIndicator) ); return false; }, generateMessage: function (indicatorType, required) { return 'Error: "' + indicatorType + '" indicator type requires "' + required + '" indicator loaded before. Please read docs: ' + 'https://api.highcharts.com/highstock/plotOptions.' + indicatorType; } }; export default requiredIndicatorMixin;