ESlint keyword-spacing, no-multi-spaces

This commit is contained in:
Peter Jaszkowiak
2017-02-18 01:52:56 -07:00
parent a5a3f3089a
commit 604358ecc4
116 changed files with 210 additions and 210 deletions

View File

@@ -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);
}