1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-21 22:27:59 +01:00

added counter to web site

This commit is contained in:
Martin Stubenschrott
2007-04-18 01:18:46 +00:00
parent aff207c1df
commit 67aa5305e8
3 changed files with 7 additions and 11 deletions

View File

@@ -652,9 +652,9 @@ var g_mappings = [/*{{{*/
["I"],
"Disable vimperator keys",
"Starts an 'ignorekeys' mode, where all keys except <code class=mapping>&lt;Esc&gt;</code> are passed to the next event handler.<br>"+
"This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore." +
"This is especially useful, if JavaScript controlled forms like the RichEdit form fields of GMail don't work anymore.<br>" +
"To exit this mode, press <code class=mapping>&lt;Esc&gt;</code>. If you also need to pass <code class=mapping>&lt;Esc&gt;</code>"+
"<code class=mapping>&lt;Esc&gt;</code> in this mode to the webpage, prepend it with <code class=mapping>&lt;C-v&gt;</code>.",
"in this mode to the webpage, prepend it with <code class=mapping>&lt;C-v&gt;</code>.",
function(count) { addMode(MODE_ESCAPE_ALL_KEYS); echo("Vimperator keys disabled. Press <Esc> to reenable.");}
],
[

View File

@@ -88,7 +88,7 @@ var g_settings = [/*{{{*/
[
["focusedhintstyle", "fhs"],
"CSS specification of focused hints appearance",
"The font (and size) is inherited from Firefox's prefences for Monospaced fonts. Change them in the GUI prefernce panel if necessary.",
null,
function(value) { set_pref("focusedhintstyle", value); },
function() { return get_pref("focusedhintstyle"); },
"string",
@@ -132,7 +132,7 @@ var g_settings = [/*{{{*/
[
["hintstyle", "hs"],
"CSS specification of unfocused hints appearance",
"The font (and size) is inherited from Firefox's prefences for Monospaced fonts. Change them in the GUI prefernce panel if necessary.",
null,
function(value) { set_pref("hintstyle", value); },
function() { return get_pref("hintstyle"); },
"string",

View File

@@ -12,9 +12,7 @@ WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
for the specific language governing rights and limitations under the
License.
The Initial Developer of the Original Code is Shawn Betts.
Portions created by the Initial Developer are Copyright (C) 2004
by the Initial Developer. All Rights Reserved.
(c) 2006-2007 Martin Stubenschrott
Alternatively, the contents of this file may be used under the terms of
either the GNU General Public License Version 2 or later (the "GPL"), or
@@ -46,8 +44,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
<script type="application/x-javascript" src="hints.js"/>
<window id="main-window">
<toolbar id="vimperator-toolbar" hidden="false" align="center" fullscreentoolbar="true"
onblur="onBlur();">
<toolbar id="vimperator-toolbar" hidden="false" align="center" fullscreentoolbar="true">
<vbox id="vim-container" flex="1" hidden="false">
<listbox id="vim-preview_window" class="plain" rows="10" flex="1" hidden="true"
ondblclick="preview_window_select(event);" onclick="preview_window_select(event);" onkeydown="preview_window_select(event);"
@@ -72,7 +69,7 @@ the terms of any one of the MPL, the GPL or the LGPL.
</hbox>
<listbox id="vim-completion" class="plain" rows="1" flex="1" hidden="true"
style="font-family: monospace; -moz-user-focus:ignore; -moz-user-select:ignore; overflow:-moz-scrollbars-none;">
style="font-family: monospace; -moz-user-focus:ignore; -moz-user-select:normal; overflow:-moz-scrollbars-none;">
<listcols>
<listcol flex="1" width="50%"/>
<listcol flex="1" width="50%"/>
@@ -88,7 +85,6 @@ the terms of any one of the MPL, the GPL or the LGPL.
<keyset id="mainKeyset">
<key id="key_open_vimbar" key=":" oncommand="openVimperatorBar();" modifiers=""/>
<key id="key_stop" keycode="VK_ESCAPE" oncommand="onEscape();"/>
<!--key id="key_cancel" keycode="[" modifiers="control" oncommand="onEscape();"/-->
<!-- other keys are handled inside vimperator.js event loop -->
</keyset>