From: Paweł Forysiuk Date: Tue, 18 Oct 2011 16:59:44 +0000 (+0200) Subject: Fix dialing with keyboard after some recent changes X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06620d014bc4201f2c11dfe0c1cf306f07f50ba7;p=midori Fix dialing with keyboard after some recent changes --- diff --git a/data/speeddial-head.html b/data/speeddial-head.html index 27303cfa..201fc9c5 100644 --- a/data/speeddial-head.html +++ b/data/speeddial-head.html @@ -120,8 +120,8 @@ var getAction = function (id) { - var host = document.getElementById(id).childNodes[0].childNodes[0].host; - if (host) + var s = document.getElementById(id).childNodes[0]; + if (s.className == 'preview') return true; var url = prompt ("{enter_shortcut_address}", "http://"); @@ -169,11 +169,11 @@ if (key_id.substr(1) > 9) { if (getAction (key_id)) - document.location = div.childNodes[0].childNodes[0].href; + document.location = div.childNodes[0].childNodes[1].href; key_id = 's'; } else - key_timeout = setTimeout ('if (getAction (key_id)) document.location = document.getElementById(key_id).childNodes[0].childNodes[0].href; key_id = \'s\'', 1000); + key_timeout = setTimeout ('if (getAction (key_id)) document.location = document.getElementById(key_id).childNodes[0].childNodes[1].href; key_id = \'s\'', 1000); } else key_id = 's';