Fix intval button text changes

This commit is contained in:
mmcwilliams 2017-12-29 22:42:49 -05:00
parent b02035ea16
commit a26d73bece
1 changed files with 2 additions and 2 deletions

View File

@ -117,11 +117,11 @@ var setDirLabel = function (dir) {
if (dir) {
bwdLabel.classList.remove('selected');
fwdLabel.classList.add('selected');
frame.innerHTML = '+1 FRAME';
but.innerHTML = '+1 FRAME';
} else {
fwdLabel.classList.remove('selected');
bwdLabel.classList.add('selected');
frame.innerHTML = '-1 FRAME';
but.innerHTML = '-1 FRAME';
}
};
var incCounter = function (val) {