| Filetype | Algorithm | Size(KB) |
|---|---|---|
| zip | PPMD | 31,572 |
| zip | LZMA | 25,898 |
| zip | Deflate64 | 45,455 |
| zip | Deflate | 48,324 |
| zip | Bzip2 | 36,082 |
| 7z | PPMD | 32,737 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| javascript:(function(){ | |
| try{ | |
| function exitFS(){ | |
| let d=document; | |
| (d.exitFullscreen||d.webkitExitFullscreen||d.mozCancelFullScreen||d.msExitFullscreen)?.call(d); | |
| } | |
| function requestFS(el){ | |
| (el.requestFullscreen||el.webkitRequestFullscreen||el.mozRequestFullScreen||el.msRequestFullscreen)?.call(el); | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| /* | |
| The Redux Framework Options Configuration File. | |
| Assigns to the global variable $theme_options all of the admin's options. | |
| */ | |
| if (!class_exists('Redux')) { | |
| require_once ABSPATH . '\wp-content\plugins\redux-framework\redux-core\framework.php'; |