Changeset 3446781
- Timestamp:
- 01/26/2026 01:44:39 AM (2 months ago)
- Location:
- css-js-files
- Files:
-
- 7 added
- 3 edited
-
tags/1.5.6 (added)
-
tags/1.5.6/css (added)
-
tags/1.5.6/css-js-files.php (added)
-
tags/1.5.6/css/css-js-files.css (added)
-
tags/1.5.6/js (added)
-
tags/1.5.6/js/css-js-files.js (added)
-
tags/1.5.6/readme.txt (added)
-
trunk/css-js-files.php (modified) (1 diff)
-
trunk/js/css-js-files.js (modified) (1 diff)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
css-js-files/trunk/css-js-files.php
r3446057 r3446781 4 4 Plugin URI: https://wordpress.org/plugins/css-js-files/ 5 5 Description: Add CSS files and/or CSS custom rules to any single page or post or globally 6 Version: 1.5. 56 Version: 1.5.6 7 7 Author: James Low 8 8 Author URI: http://jameslow.com -
css-js-files/trunk/js/css-js-files.js
r3446057 r3446781 80 80 init('js'); 81 81 document.addEventListener( 'DOMContentLoaded', function () { 82 initEditor('css-js-files-css-rules', 'css'); 83 initEditor('css-js-files-css-admin', 'css'); 84 initEditor('css-js-files-js-rules', 'javascript'); 85 initEditor('css-js-files-js-admin', 'javascript'); 86 initEditor('css-js-files-head-rules', 'htmlmixed'); 87 initEditor('css-js-files-body-rules', 'htmlmixed'); 88 initEditor('css-js-files-footer-rules', 'htmlmixed'); 82 const params = new URLSearchParams(window.location.search); 83 if (params.get('page') === 'css-js-files') { 84 initEditor('css-js-files-css-rules', 'css'); 85 initEditor('css-js-files-css-admin', 'css'); 86 initEditor('css-js-files-js-rules', 'javascript'); 87 initEditor('css-js-files-js-admin', 'javascript'); 88 initEditor('css-js-files-head-rules', 'htmlmixed'); 89 initEditor('css-js-files-body-rules', 'htmlmixed'); 90 initEditor('css-js-files-footer-rules', 'htmlmixed'); 91 } 89 92 }); 90 93 }(jQuery)); -
css-js-files/trunk/readme.txt
r3446057 r3446781 29 29 30 30 == Changelog == 31 32 = 1.5.6 = 33 * Only use syntax highlighting on global page until it works with gutenburg editor 31 34 32 35 = 1.5.5 =
Note: See TracChangeset
for help on using the changeset viewer.