Skip to content

Commit

Permalink
Shorten a comment line (#464)
Browse files Browse the repository at this point in the history
  • Loading branch information
amire80 authored Jul 24, 2023
1 parent 372ebc2 commit 95e50bb
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/jquery.uls.lcd.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 95e50bb

Please sign in to comment.