use jquery for dblclick handler to access event.target

This commit is contained in:
Jörn Zaefferer 2007-06-20 21:13:56 +00:00
parent 03c623c35f
commit 6f510757ab

View file

@ -125,13 +125,13 @@ function test(name, callback, nowait) {
else else
n.style.display = "none"; n.style.display = "none";
}; };
b.ondblclick = function(event) { $(b).dblclick(function(event) {
var target = jQuery(event.target).filter("strong").clone(); var target = jQuery(event.target).filter("strong").clone();
if ( target.length ) { if ( target.length ) {
target.children().remove(); target.children().remove();
location.href = location.href.match(/^(.+?)(\?.*)?$/)[1] + "?" + encodeURIComponent($.trim(target.text())); location.href = location.href.match(/^(.+?)(\?.*)?$/)[1] + "?" + encodeURIComponent($.trim(target.text()));
} }
}; });
li.appendChild( b ); li.appendChild( b );
li.appendChild( ol ); li.appendChild( ol );