diff --git a/Plugins.textile b/Plugins.textile index d33dd25..99ebd45 100644 --- a/Plugins.textile +++ b/Plugins.textile @@ -28,10 +28,9 @@ function filter(e) { You can use the embeded jQuery too, here for example a plugin which lets you mark particular posts so you don't forget them in your timeline: ``` js -$("ol").delegate('a', 'click', function(e) { +$("ol").delegate('a', 'click dblclick', function(e) { e.stopPropagation(); -}).delegate('li', 'click', function(e) { - debug(e.currentTarget.tagName) +}).delegate('li', 'dblclick', function(e) { var li = $(this); if(li.hasClass("selected")) { li.removeClass("selected");