Updated Plugins (textile)

jeena 2012-11-22 11:24:51 -08:00
parent 0fe07e7870
commit 0e6f74f1f0

@ -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: 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 ``` js
$("ol").delegate('a', 'click', function(e) { $("ol").delegate('a', 'click dblclick', function(e) {
e.stopPropagation(); e.stopPropagation();
}).delegate('li', 'click', function(e) { }).delegate('li', 'dblclick', function(e) {
debug(e.currentTarget.tagName)
var li = $(this); var li = $(this);
if(li.hasClass("selected")) { if(li.hasClass("selected")) {
li.removeClass("selected"); li.removeClass("selected");