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

fix capitalisation typo

This commit is contained in:
Doug Kearns
2007-10-30 12:32:30 +00:00
parent 4a5f71e72d
commit 432ddcdc40

View File

@@ -83,7 +83,7 @@ vimperator.Hints = function() //{{{
var elem = valid_hints[0];
var doc = window.content.document;
var elemTagName = elem.localName.toLowerCase();
if (elemtagName == 'frame' || elemtagName == 'iframe')
if (elemTagName == 'frame' || elemTagName == 'iframe')
{
elem.contentWindow.focus();
return;
@@ -97,7 +97,7 @@ vimperator.Hints = function() //{{{
var x = 0;
var y = 0;
// for imagemap
if (elemtagName == 'area')
if (elemTagName == 'area')
{
var coords = elem.getAttribute("coords").split(",");
x = Number(coords[0]);