mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2025-12-22 21:27:58 +01:00
fix capitalisation typo
This commit is contained in:
@@ -83,7 +83,7 @@ vimperator.Hints = function() //{{{
|
|||||||
var elem = valid_hints[0];
|
var elem = valid_hints[0];
|
||||||
var doc = window.content.document;
|
var doc = window.content.document;
|
||||||
var elemTagName = elem.localName.toLowerCase();
|
var elemTagName = elem.localName.toLowerCase();
|
||||||
if (elemtagName == 'frame' || elemtagName == 'iframe')
|
if (elemTagName == 'frame' || elemTagName == 'iframe')
|
||||||
{
|
{
|
||||||
elem.contentWindow.focus();
|
elem.contentWindow.focus();
|
||||||
return;
|
return;
|
||||||
@@ -97,7 +97,7 @@ vimperator.Hints = function() //{{{
|
|||||||
var x = 0;
|
var x = 0;
|
||||||
var y = 0;
|
var y = 0;
|
||||||
// for imagemap
|
// for imagemap
|
||||||
if (elemtagName == 'area')
|
if (elemTagName == 'area')
|
||||||
{
|
{
|
||||||
var coords = elem.getAttribute("coords").split(",");
|
var coords = elem.getAttribute("coords").split(",");
|
||||||
x = Number(coords[0]);
|
x = Number(coords[0]);
|
||||||
|
|||||||
Reference in New Issue
Block a user