Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.140.254.100
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
public /
plugins /
flot /
plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
jquery.flot.axislabels.js
7.31
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.browser.js
4.14
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.categories.js
6.09
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.composeImages.js
13.29
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.crosshair.js
6.45
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.drawSeries.js
23.78
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.errorbars.js
12.96
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.fillbetween.js
8.48
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.flatdata.js
1.55
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.hover.js
12.28
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.image.js
7.26
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.legend.js
16.32
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.logaxis.js
9.64
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.navigate.js
29.63
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.pie.js
31.33
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.resize.js
3.25
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.saturated.js
1.26
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.selection.js
18.94
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.stack.js
7.88
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.symbol.js
3.32
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.threshold.js
4.41
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.time.js
21.41
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.touch.js
10.66
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.touchNavigate.js
13.14
KB
-rw-rw-r--
2022-12-15 15:04
jquery.flot.uiConstants.js
254
B
-rw-rw-r--
2022-12-15 15:04
Save
Rename
/* Support for flat 1D data series. A 1D flat data series is a data series in the form of a regular 1D array. The main reason for using a flat data series is that it performs better, consumes less memory and generates less garbage collection than the regular flot format. Example: plot.setData([[[0,0], [1,1], [2,2], [3,3]]]); // regular flot format plot.setData([{flatdata: true, data: [0, 1, 2, 3]}]); // flatdata format Set series.flatdata to true to enable this plugin. You can use series.start to specify the starting index of the series (default is 0) You can use series.step to specify the interval between consecutive indexes of the series (default is 1) */ /* global jQuery*/ (function ($) { 'use strict'; function process1DRawData(plot, series, data, datapoints) { if (series.flatdata === true) { var start = series.start || 0; var step = typeof series.step === 'number' ? series.step : 1; datapoints.pointsize = 2; for (var i = 0, j = 0; i < data.length; i++, j += 2) { datapoints.points[j] = start + (i * step); datapoints.points[j + 1] = data[i]; } if (datapoints.points !== undefined) { datapoints.points.length = data.length * 2; } else { datapoints.points = []; } } } $.plot.plugins.push({ init: function(plot) { plot.hooks.processRawData.push(process1DRawData); }, name: 'flatdata', version: '0.0.2' }); })(jQuery);