1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-10-10 21:21:56 +00:00
* Changed: Use the new Twitch Data module for fetching stream up-time when it isn't known, rather than forcing queries to re-fetch.
* Changed: Add a method to Twitch Data for looking up stream up-time.
* Fixed: The autocompletion component should not swallow key-presses when modifier keys are being held.
* Fixed: Issue when comparing against `null` with `deep_equals`.
This commit is contained in:
SirStendec 2019-06-15 03:58:06 -04:00
parent 275248ca36
commit 80148e5579
16 changed files with 363 additions and 84 deletions

View file

@ -305,6 +305,9 @@ export default {
},
onHome(event) {
if ( event.ctrlKey || event.shiftKey || event.altKey )
return;
if ( ! this.open )
return;
@ -316,6 +319,9 @@ export default {
},
onEnd(event) {
if ( event.ctrlKey || event.shiftKey || event.altKey )
return;
if ( ! this.open )
return;
@ -327,6 +333,9 @@ export default {
},
onUp(event) {
if ( event.ctrlKey || event.shiftKey || event.altKey )
return;
if ( ! this.open )
return;
@ -341,6 +350,9 @@ export default {
},
onDown(event) {
if ( event.ctrlKey || event.shiftKey || event.altKey )
return;
if ( ! this.open )
return;
@ -363,6 +375,9 @@ export default {
},
onEnter(event) {
if ( event.ctrlKey || event.shiftKey || event.altKey )
return;
if ( ! this.open )
return;