kopia lustrzana https://github.com/backface/turtlestitch
enhanced detecting '+' and '-' keys for Firefox
rodzic
f27014b959
commit
666f70449b
|
@ -83,6 +83,7 @@
|
||||||
### 2019-05-21
|
### 2019-05-21
|
||||||
* Objects: fixed stage-size settings bug
|
* Objects: fixed stage-size settings bug
|
||||||
* new "World Map" library
|
* new "World Map" library
|
||||||
|
* enhanced detecting '+' and '-' keys for Firefox
|
||||||
|
|
||||||
### 2019-05-20
|
### 2019-05-20
|
||||||
* Objects, Blocks added plus- and minus- keys to key pressed predicate and hat block
|
* Objects, Blocks added plus- and minus- keys to key pressed predicate and hat block
|
||||||
|
|
|
@ -7667,10 +7667,12 @@ StageMorph.prototype.processKeyEvent = function (event, action) {
|
||||||
case 40:
|
case 40:
|
||||||
keyName = 'down arrow';
|
keyName = 'down arrow';
|
||||||
break;
|
break;
|
||||||
case 187:
|
case 171: // Firefox
|
||||||
|
case 187: // Chrome, Safari
|
||||||
keyName = '+';
|
keyName = '+';
|
||||||
break;
|
break;
|
||||||
case 189:
|
case 173: // Firefox
|
||||||
|
case 189: // Chrome, Safari
|
||||||
keyName = '-';
|
keyName = '-';
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
|
Ładowanie…
Reference in New Issue