mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2025-02-17 17:01:12 -05:00
touch to click on init options page
This commit is contained in:
parent
8c5e099337
commit
ec18d1ff92
1 changed files with 3 additions and 2 deletions
|
@ -203,7 +203,7 @@ function indexHidePlaceQuestion () {
|
|||
gn('usageNoanswer').className = 'usageNoanswer hide';
|
||||
}
|
||||
|
||||
function optionTouched (elem) {
|
||||
function optionSelected (elem) {
|
||||
var key = elem.target.getAttribute('data-key');
|
||||
var value = elem.target.getAttribute('data-value');
|
||||
// sometimes a touch is registered by a child of the relevant parent
|
||||
|
@ -212,6 +212,7 @@ function optionTouched (elem) {
|
|||
key = parent.getAttribute('data-key');
|
||||
value = parent.getAttribute('data-value');
|
||||
}
|
||||
console.log(key, value)
|
||||
// if we still don't have a key and value, something is wrong -- just go
|
||||
// to lobby
|
||||
if (!key && !value) {
|
||||
|
@ -255,7 +256,7 @@ function indexShowQuestion (key) {
|
|||
optionElem.setAttribute('data-key', key);
|
||||
optionElem.setAttribute('data-value', option);
|
||||
optionElem.setAttribute('id', 'option-' + key + '-' + optionNum);
|
||||
optionElem.ontouchend = optionTouched;
|
||||
optionElem.onclick = optionSelected;
|
||||
optionsListElem.appendChild(optionElem);
|
||||
|
||||
switch (optionType) {
|
||||
|
|
Loading…
Reference in a new issue