Push dev work to master #2

Merged
sixteenmillimeter merged 416 commits from dev into master 2018-07-19 15:29:02 +00:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 72b127f134 - Show all commits

View File

@ -183,12 +183,12 @@ var seqState = function (state) {
if (state) {
if (!elem.classList.contains('focus')) {
elem.classList.add('focus');
elem.innerText = 'STOP SEQUENCE';
elem.innerHTML = 'STOP SEQUENCE';
}
} else {
if (elem.classList.contains('focus')) {
elem.classList.remove('focus');
elem.innerText = 'START SEQUENCE';
elem.innerHTML = 'START SEQUENCE';
}
}
};