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
n.style.display = "none";
};
b.ondblclick = function(event) {
$(b).dblclick(function(event) {
var target = jQuery(event.target).filter("strong").clone();
if ( target.length ) {
target.children().remove();
location.href = location.href.match(/^(.+?)(\?.*)?$/)[1] + "?" + encodeURIComponent($.trim(target.text()));
}
};
});
li.appendChild( b );
li.appendChild( ol );