mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-20 15:30:39 +01:00
ESlint no-plusplus
and no-empty, space-unary-ops
This commit is contained in:
@@ -70,7 +70,7 @@ define('topicSelect', ['components'], function (components) {
|
||||
end = tmp;
|
||||
}
|
||||
|
||||
for(var i = start; i <= end; ++i) {
|
||||
for(var i = start; i <= end; i += 1) {
|
||||
var topic = $('[component="category/topic"]').eq(i);
|
||||
toggleSelect(topic.find('[component="topic/select"]'), isSelected);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user