Changeset 2974797
- Timestamp:
- 10/04/2023 02:20:23 PM (2 years ago)
- Location:
- wp-lozad/trunk
- Files:
-
- 2 added
- 3 edited
-
classes/ContentProcessing.php (modified) (1 diff)
-
img/def@2x.png (added)
-
img/def@2x.webp (added)
-
lozad.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-lozad/trunk/classes/ContentProcessing.php
r2959989 r2974797 219 219 if (!preg_match($skipFramesRegex, $iframeHTML)) { 220 220 221 $replaceIframeHtml = '<input type="text" class="l-d-none ' . self::LOZAD_BASE_CLASS . '" data-original_content="' . base64_encode($iframeHTML) . '">'; 221 $replaceIframeHtml = sprintf( 222 '<input type="text" aria-label="%1$s" class="l-d-none %1$s" data-original_content="%2$s">', 223 self::LOZAD_BASE_CLASS, 224 base64_encode($iframeHTML) 225 ); 222 226 223 227 $this->pushArrays($iframeHTML, $replaceIframeHtml); -
wp-lozad/trunk/lozad.php
r2971672 r2974797 4 4 Description: lazy loading of images by baroda algorithm 5 5 Author: Evgeniy Kozenok 6 Version: 1.8. 26 Version: 1.8.3 7 7 */ 8 8 -
wp-lozad/trunk/readme.txt
r2971672 r2974797 4 4 Requires at least: 5.0 5 5 Tested up to: 6.3 6 Stable tag: 1.8. 26 Stable tag: 1.8.3 7 7 License: GPL2 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 24 24 25 25 == Changelog == 26 = 1.8.3 = 27 * 2023-10-04: aria label and @2x def img 28 26 29 = 1.8.2 = 27 30 * 2023-09-26: hidden input
Note: See TracChangeset
for help on using the changeset viewer.