Bug 725123: Dispatch an event when the MENU button is pressed. r=qDot

This commit is contained in:
Chris Jones 2012-02-07 21:22:34 -08:00
Родитель 99374236ca
Коммит 2521fe669d
1 изменённых файлов: 8 добавлений и 0 удалений

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

@ -134,6 +134,7 @@ var shell = {
window.controllers.appendController(this);
window.addEventListener('keypress', this);
window.addEventListener('MozApplicationManifest', this);
window.addEventListener("AppCommand", this);
this.contentBrowser.addEventListener('load', this, true);
try {
@ -225,6 +226,13 @@ var shell = {
break;
}
break;
case 'AppCommand':
switch (evt.command) {
case 'Menu':
this.sendEvent(content, 'menu');
break;
}
break;
case 'load':
this.contentBrowser.removeEventListener('load', this, true);
this.turnScreenOn();