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
/** ## jquery.flot.browser.js This plugin is used to make available some browser-related utility functions. ### Methods */ (function ($) { 'use strict'; var browser = { /** - getPageXY(e) Calculates the pageX and pageY using the screenX, screenY properties of the event and the scrolling of the page. This is needed because the pageX and pageY properties of the event are not correct while running tests in Edge. */ getPageXY: function (e) { // This code is inspired from https://stackoverflow.com/a/3464890 var doc = document.documentElement, pageX = e.clientX + (window.pageXOffset || doc.scrollLeft) - (doc.clientLeft || 0), pageY = e.clientY + (window.pageYOffset || doc.scrollTop) - (doc.clientTop || 0); return { X: pageX, Y: pageY }; }, /** - getPixelRatio(context) This function returns the current pixel ratio defined by the product of desktop zoom and page zoom. Additional info: https://www.html5rocks.com/en/tutorials/canvas/hidpi/ */ getPixelRatio: function(context) { var devicePixelRatio = window.devicePixelRatio || 1, backingStoreRatio = context.webkitBackingStorePixelRatio || context.mozBackingStorePixelRatio || context.msBackingStorePixelRatio || context.oBackingStorePixelRatio || context.backingStorePixelRatio || 1; return devicePixelRatio / backingStoreRatio; }, /** - isSafari, isMobileSafari, isOpera, isFirefox, isIE, isEdge, isChrome, isBlink This is a collection of functions, used to check if the code is running in a particular browser or Javascript engine. */ isSafari: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser // Safari 3.0+ "[object HTMLElementConstructor]" return /constructor/i.test(window.top.HTMLElement) || (function (p) { return p.toString() === "[object SafariRemoteNotification]"; })(!window.top['safari'] || (typeof window.top.safari !== 'undefined' && window.top.safari.pushNotification)); }, isMobileSafari: function() { //isMobileSafari adapted from https://stackoverflow.com/questions/3007480/determine-if-user-navigated-from-mobile-safari return navigator.userAgent.match(/(iPod|iPhone|iPad)/) && navigator.userAgent.match(/AppleWebKit/); }, isOpera: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser //Opera 8.0+ return (!!window.opr && !!opr.addons) || !!window.opera || navigator.userAgent.indexOf(' OPR/') >= 0; }, isFirefox: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser // Firefox 1.0+ return typeof InstallTrigger !== 'undefined'; }, isIE: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser // Internet Explorer 6-11 return /*@cc_on!@*/false || !!document.documentMode; }, isEdge: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser // Edge 20+ return !browser.isIE() && !!window.StyleMedia; }, isChrome: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser // Chrome 1+ return !!window.chrome && !!window.chrome.webstore; }, isBlink: function() { // *** https://stackoverflow.com/questions/9847580/how-to-detect-safari-chrome-ie-firefox-and-opera-browser return (browser.isChrome() || browser.isOpera()) && !!window.CSS; } }; $.plot.browser = browser; })(jQuery);