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

remove redundant return statement from v.events.toString

This commit is contained in:
Doug Kearns
2007-10-30 09:41:49 +00:00
parent 9476bbedc7
commit 8c5aaa384f

View File

@@ -372,10 +372,6 @@ vimperator.Events = function() //{{{
if (modifier.length == 0)
return key;
}
if (key == null)
return null;
}
else if (event.type == "click" || event.type == "dblclick")
{
@@ -631,7 +627,6 @@ vimperator.Events = function() //{{{
event.preventDefault();
event.stopPropagation();
return true;
}
}