From 95e50bb37b68d7ce80f43c888373c2c95d92fda6 Mon Sep 17 00:00:00 2001 From: "Amir E. Aharoni" Date: Mon, 24 Jul 2023 11:11:50 +0300 Subject: [PATCH] Shorten a comment line (#464) Recommended atomatically at https://github.com/wikimedia/jquery.uls/pull/463/files --- src/jquery.uls.lcd.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/jquery.uls.lcd.js b/src/jquery.uls.lcd.js index c5f5da4..080ccea 100644 --- a/src/jquery.uls.lcd.js +++ b/src/jquery.uls.lcd.js @@ -112,8 +112,9 @@ if ( this.navigationIndex === null ) { this.navigationIndex = 0; } else { - // Auto-correct the index. It has been noticed that the navigationIndex goes beyond the - // max index sometimes. See: phab:T328956#8854835 + // Auto-correct the index. + // It has been noticed that the navigationIndex goes beyond + // the max index sometimes. See: phab:T328956#8854835 if ( this.navigationIndex > maxIndex ) { this.navigationIndex = maxIndex; } else {