mirror of
https://github.com/zulip/zulip.git
synced 2025-11-02 21:13:36 +00:00
eslint: Enable space-infix-ops rule.
More about rule at https://eslint.org/docs/rules/space-infix-ops
This commit is contained in:
@@ -104,7 +104,7 @@ exports.maybe_advance_to_recently_sent_message = function (messages) {
|
||||
|
||||
// Iterate backwards to find the last message sent_by_me, stopping at
|
||||
// the pointer position.
|
||||
for (i = messages.length-1; i>=0; i -= 1) {
|
||||
for (i = messages.length - 1; i >= 0; i -= 1) {
|
||||
var id = messages[i].id;
|
||||
if (id <= selected_id) {
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user