mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-20 15:30:39 +01:00
ESlint keyword-spacing, no-multi-spaces
This commit is contained in:
@@ -52,7 +52,7 @@ define('topicSelect', ['components'], function (components) {
|
||||
|
||||
function selectRange(clickedTid) {
|
||||
|
||||
if(!lastSelected) {
|
||||
if (!lastSelected) {
|
||||
lastSelected = $('[component="category/topic"]').first().find('[component="topic/select"]');
|
||||
}
|
||||
|
||||
@@ -70,7 +70,7 @@ define('topicSelect', ['components'], function (components) {
|
||||
end = tmp;
|
||||
}
|
||||
|
||||
for(var i = start; i <= end; i += 1) {
|
||||
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