Some code cleanup.

This commit is contained in:
James Cole
2017-07-08 06:28:44 +02:00
parent de9728895e
commit 5ef2067836
53 changed files with 597 additions and 449 deletions

View File

@@ -139,10 +139,10 @@ function resetDivSplits() {
row.attr('data-split', i);
// add or remove class with bg thing
if(i % 2 === 0) {
if (i % 2 === 0) {
row.removeClass('bg-gray-light');
}
if(i % 2 === 1) {
if (i % 2 === 1) {
row.addClass('bg-gray-light');
}