����JFIF��H�H����Exif��MM�*���� ��3����V�����3������3�(��������������������3�����
Server IP : 74.208.127.88 / Your IP : 3.15.10.196 Web Server : Apache/2.4.41 (Ubuntu) System : Linux ubuntu 5.4.0-163-generic #180-Ubuntu SMP Tue Sep 5 13:21:23 UTC 2023 x86_64 User : www-data ( 33) PHP Version : 7.4.3-4ubuntu2.29 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/admin/assets/plugins/dynatree/doc/ |
Upload File : |
/************************************************************************* (c) 2008-2012 Martin Wendt *************************************************************************/ function viewSourceCode() { window.location = "view-source:" + window.location.href; } function initCodeSamples() { var $source = $("#sourceCode"); $("#codeExample").toggle( function(){ $source.show("fast"); if( !this.old ){ this.old = $(this).html(); $.get(this.href, function(code){ // Remove <!-- Start_Exclude [...] End_Exclude --> blocks: code = code.replace(/<!-- Start_Exclude(.|\n|\r)*?End_Exclude -->/gi, "<!-- (Irrelevant source removed.) -->"); // Reduce tabs from 8 to 2 characters code = code.replace(/\t/g, " "); $source.text(code); // Format code samples try { prettyPrint(); } catch (e) { alert(e); } }, "html"); } $(this).html("Hide source code"); }, function(){ $(this).html(this.old); $source.hide("fast"); } ); if(jQuery.ui){ var info = "Dynatree " + jQuery.ui.dynatree.version + ", jQuery UI " + jQuery.ui.version + ", jQuery " + jQuery.fn.jquery; /* info += "\n<br>"; info += "document.compatMode: " + document.compatMode + "\n"; for(e in jQuery.support){ info += "<br>\n" + e + ": " + jQuery.support[e]; } */ $("p.sample-links").after("<p class='version-info'>" + info + "</p>"); } } var _gaq = _gaq || []; $(function(){ // Log to Google Analytics, when not running locally if ( document.URL.toLowerCase().indexOf("wwwendt.de/") >= 0 ) { _gaq.push(["_setAccount", "UA-316028-1"]); _gaq.push(["_trackPageview"]); (function() { var ga = document.createElement("script"); ga.type = "text/javascript"; ga.async = true; ga.src = ("https:" == document.location.protocol ? "https://ssl" : "http://www") + ".google-analytics.com/ga.js"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(ga, s); })(); } // Show some elements only, if (not) inside the Example Browser if (top.location == self.location){ $(".hideOutsideFS").hide(); }else{ $(".hideInsideFS").hide(); } initCodeSamples(); });