use jquery for dblclick handler to access event.target
This commit is contained in:
parent
03c623c35f
commit
6f510757ab
|
@ -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 );
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue