Bug 920946 - Introduce dwellend gesture to allow better touch typing. r=marcoz

This commit is contained in:
Eitan Isaacson 2013-12-05 13:15:03 +02:00
Родитель 547162ab7c
Коммит f1fc93c986
2 изменённых файлов: 3 добавлений и 0 удалений

Просмотреть файл

@ -744,6 +744,7 @@ var Input = {
this.contextAction('forward');
break;
case 'exploreend1':
case 'dwellend1':
this.activateCurrent(null, true);
break;
case 'swiperight2':

Просмотреть файл

@ -392,6 +392,8 @@ TouchPoint.prototype = {
return {type: 'tap', x: this.startX, y: this.startY};
} else if (!this.done && duration == TouchAdapter.DWELL_THRESHOLD) {
return {type: 'dwell', x: this.startX, y: this.startY};
} else if (this.done && duration > TouchAdapter.DWELL_THRESHOLD) {
return {type: 'dwellend', x: this.startX, y: this.startY};
}
}