adding new export for browserBindings.xul r =saari

This commit is contained in:
mjudge%netscape.com 1999-12-13 23:25:29 +00:00
Родитель f176e966c6
Коммит b07fe56dc5
4 изменённых файлов: 9 добавлений и 0 удалений

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

@ -1,3 +1,4 @@
browserBindings.xul
editorBindings.xul
inputBindings.xul
hiddenWindow.xul

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

@ -29,6 +29,7 @@ include $(DEPTH)/config/autoconf.mk
DIRS = unix
EXPORT_RESOURCE_CONTENT = \
$(srcdir)/browserBindings.xul \
$(srcdir)/editorBindings.xul \
$(srcdir)/inputBindings.xul \
$(srcdir)/hiddenWindow.xul \

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

@ -6,6 +6,12 @@
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<keyset id="browserKeySet">
<key id="key_home" key="a" shift="false" control="false"
onkeypress="
dump('hi hello stuff\n');
var controller =
document.commandDispatcher.getControllerForCommand('cmd_scrollPageUp');
controller.doCommand('cmd_scrollPageUp');"/>
<key id="key_home" keycode="VK_PAGEUP" shift="false" control="false"
onkeypress="
var controller =

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

@ -28,6 +28,7 @@ include <$(DEPTH)\config\rules.mak>
DISTBROWSER=$(DIST)\bin\chrome\global\content\default
install::
$(MAKE_INSTALL) browserBindings.xul $(DISTBROWSER)
$(MAKE_INSTALL) editorBindings.xul $(DISTBROWSER)
$(MAKE_INSTALL) inputBindings.xul $(DISTBROWSER)
$(MAKE_INSTALL) hiddenWindow.xul $(DISTBROWSER)