mirror of
https://github.com/scratchfoundation/scratchjr.git
synced 2024-11-25 00:28:20 -05:00
Merge pull request #424 from yueyuzhao/issue/423-touch-to-click
touch to click on init options page
This commit is contained in:
commit
70c89eee68
1 changed files with 2 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
|
||||
|
@ -255,7 +255,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