зеркало из https://github.com/mozilla/pjs.git
Added the text zoom control, so far to the top menu.
This commit is contained in:
Родитель
96717997c3
Коммит
03ab4e7b39
|
@ -335,3 +335,14 @@ function urlbar() {
|
|||
|
||||
|
||||
}
|
||||
|
||||
|
||||
/* Reset the text size */
|
||||
function BrowserResetZoomPlus() {
|
||||
getBrowser().selectedBrowser.markupDocumentViewer.textZoom+= .25;
|
||||
}
|
||||
|
||||
function BrowserResetZoomMinus() {
|
||||
getBrowser().selectedBrowser.markupDocumentViewer.textZoom-= .25;
|
||||
}
|
||||
|
||||
|
|
|
@ -82,6 +82,12 @@
|
|||
<menuitem id="menu_closeWindow" command="cmd_closeWindow"
|
||||
key="key_closeWindow" label="about"/>
|
||||
<menuitem id="command_BrowserOpenTab" label="new Tab" />
|
||||
<menu id="menu-zoom" label ="Text zoom">
|
||||
<menupopup >
|
||||
<menuitem id="" oncommand="BrowserResetZoomPlus()" label="ZOOM + " />
|
||||
<menuitem id="" oncommand="BrowserResetZoomMinus()" label="ZOOM - " />
|
||||
</menupopup>
|
||||
</menu>
|
||||
<!--
|
||||
<menuitem id="command_BrowserOpenInfo" label="page Info" />
|
||||
<menuitem id="command_BrowserTestDialogs" label="Dialog XUL" />
|
||||
|
|
Загрузка…
Ссылка в новой задаче