Coding style clean up for #1330

print-window-tiddler
Jermolene 2015-01-06 13:49:05 +00:00
rodzic b6aa5bf78a
commit ec829180f4
1 zmienionych plików z 4 dodań i 5 usunięć

Wyświetl plik

@ -305,9 +305,8 @@ ListItemWidget.prototype.execute = function() {
// Set the current list item title
this.setVariable(item.variableName,item.itemTitle);
this.setVariable(item.iterator,(item.index + 1).toString());
this.setVariable(item.iterator + "-even",item.index % 2 == 1 ? 'true' : 'false');
this.setVariable(item.iterator + "-last",item.index + 1 == item.count ? 'true' : 'false');
this.setVariable(item.iterator + "-even",item.index % 2 == 1 ? "true" : "false");
this.setVariable(item.iterator + "-last",item.index + 1 == item.count ? "true" : "false");
// Construct the child widgets
this.makeChildWidgets();
};