K2LL33D SHELL

 Apache/2.4.7 (Ubuntu)
 Linux sman1baleendah 3.13.0-24-generic #46-Ubuntu SMP Thu Apr 10 19:11:08 UTC 2014 x86_64
 uid=33(www-data) gid=33(www-data) groups=33(www-data)
 safemode : OFF
 MySQL: ON | Perl: ON | cURL: OFF | WGet: ON
  >  / usr / share / phpmyadmin / js / jquery /
server ip : 172.67.156.115

your ip : 172.69.58.15

H O M E


Filename/usr/share/phpmyadmin/js/jquery/jquery.fullscreen.js
Size1.61 kb
Permissionrw-r--r--
Ownerroot : root
Create time27-Apr-2025 10:12
Last modified05-Dec-2013 01:44
Last accessed06-Jul-2025 08:55
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
// jQuery.FullScreen plugin

// Triple-licensed: Public Domain, MIT and WTFPL license - share and enjoy!

(function($) {
function isFullScreen() {
return document[!prefix ? 'fullScreen' :
'webkit' === prefix ? 'webkitIsFullScreen' :
prefix + 'FullScreen'];
}
function cancelFullScreen() {
return document[prefix ? prefix + 'CancelFullScreen'
: 'cancelFullScreen']();
}

var supported = typeof document.cancelFullScreen !== 'undefined'
, prefixes = ['webkit', 'moz', 'o', 'ms', 'khtml']
, prefix = ''
, noop = function() {}
, i
;

if (!supported) {
for (i = 0; prefix = prefixes[i]; i++) {
if (typeof document[prefix + 'CancelFullScreen'] !== 'undefined') {
supported = true;
break;
}
}
}

if (supported) {
$.fn.requestFullScreen = function() {
return this.each(function() {
return this[prefix ? prefix + 'RequestFullScreen'
: 'requestFullScreen']();
});
};
$.fn.fullScreenChange = function(fn) {
var ar = [prefix + 'fullscreenchange'].concat([].slice.call(arguments, 0))
, $e = $(this);
return $e.bind.apply($e, ar);
};
$.FullScreen =
{ isFullScreen: isFullScreen
, cancelFullScreen: cancelFullScreen
, prefix: prefix
, supported: supported
};
}
else {
$.fn.requestFullScreen = $.fn.fullScreenChange = noop;
$.FullScreen =
{ isFullScreen: function() { return false; }
, cancelFullScreen: noop
, prefix: prefix
, supported: supported
};
}
})(jQuery);