fixed regression - buttons not sending commands

This commit is contained in:
2017-09-06 14:45:34 +02:00
parent 5f6566a6fd
commit 979f956e7e
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -2238,7 +2238,7 @@ var Input = (function() {
_initKeys();
// Button presses
qsa('#buttons button').forEach(function(s) {
qsa('#action-buttons button').forEach(function(s) {
s.addEventListener('click', function() {
sendBtnMsg(+this.dataset['n']);
});
+1 -1
View File
@@ -638,7 +638,7 @@ var Input = (function() {
_initKeys();
// Button presses
qsa('#buttons button').forEach(function(s) {
qsa('#action-buttons button').forEach(function(s) {
s.addEventListener('click', function() {
sendBtnMsg(+this.dataset['n']);
});