%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 : /var/www/html/old/plugins/content/jw_sigpro/jw_sigpro/includes/js/jquery_slimbox/extra/ |
Upload File : |
/* The following code is identical to the default autoload code block, excepted that it will automatically fix URLs containing invalid characters. Some people use invalid characters like whitespaces, parenthesis or quotes in their image URLs. Slimbox does not work correctly with these characters, as explained in the FAQ. It's NOT a bug. The right solution is to fix the URLs by replacing these invalid characters with URL-encoded entities, so that they respect the standards. However if you are lazy and want the javascript to fix them for you before passing them to Slimbox, then replace the default autoload code block with this one. */ if (!/android|iphone|ipod|series60|symbian|windows ce|blackberry/i.test(navigator.userAgent)) { jQuery(function($) { $("a[rel^='lightbox']").slimbox({/* Put custom options here */}, function(el) { return [encodeURI(el.href), el.title]; }, function(el) { return (this == el) || ((this.rel.length > 8) && (this.rel == el.rel)); }); }); }