1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 08:37:59 +01:00

Fix some zi/zo issues.

This commit is contained in:
Kris Maglione
2009-03-30 01:16:39 -04:00
parent a8f41faf4e
commit 7e068d4f9e
7 changed files with 40 additions and 71 deletions

View File

@@ -215,13 +215,7 @@ function Buffer() //{{{
mappings.add(myModes, ["<C-c>"],
"Stop loading",
function ()
{
if(config.stop)
config.stop();
else
window.BrowserStop();
});
function () { window.BrowserStop(); });
// scrolling
mappings.add(myModes, ["j", "<Down>", "<C-e>"],
@@ -603,17 +597,7 @@ function Buffer() //{{{
commands.add(["st[op]"],
"Stop loading",
<<<<<<< HEAD:common/content/buffer.js
function ()
{
if (config.stop)
config.stop();
else
window.BrowserStop();
},
=======
function () { window.BrowserStop(); },
>>>>>>> a9f04ee3d00b282e7a91b37eb23168fb39e9de5b:common/content/buffer.js
{ argCount: "0" });
commands.add(["vie[wsource]"],