Changeset 2972300
- Timestamp:
- 09/27/2023 03:08:55 PM (3 years ago)
- Location:
- create-eye-catch-for-classic
- Files:
-
- 2 edited
- 1 copied
-
tags/0.0.6 (copied) (copied from create-eye-catch-for-classic/trunk)
-
tags/0.0.6/create-eye-catch.php (modified) (2 diffs)
-
trunk/create-eye-catch.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
create-eye-catch-for-classic/tags/0.0.6/create-eye-catch.php
r2972298 r2972300 5 5 Author: nove-b 6 6 Author URI: https://github.com/nove-b 7 Version: 1. 17 Version: 1.2 8 8 */ 9 9 … … 323 323 324 324 const lastLine = rowArray[cecfc_totalLine - 1] 325 rowArray[cecfc_totalLine - 1] = replaceLastChar(lastLine, '...'); 325 if(lastLine) { 326 rowArray[cecfc_totalLine - 1] = replaceLastChar(lastLine, '...'); 327 } 326 328 for (let i = 0; i < rowArray.length; i++) { 327 329 if (i < cecfc_totalLine) { -
create-eye-catch-for-classic/trunk/create-eye-catch.php
r2972298 r2972300 5 5 Author: nove-b 6 6 Author URI: https://github.com/nove-b 7 Version: 1. 17 Version: 1.2 8 8 */ 9 9 … … 323 323 324 324 const lastLine = rowArray[cecfc_totalLine - 1] 325 rowArray[cecfc_totalLine - 1] = replaceLastChar(lastLine, '...'); 325 if(lastLine) { 326 rowArray[cecfc_totalLine - 1] = replaceLastChar(lastLine, '...'); 327 } 326 328 for (let i = 0; i < rowArray.length; i++) { 327 329 if (i < cecfc_totalLine) {
Note: See TracChangeset
for help on using the changeset viewer.