Updated Plugins (textile)
parent
0fe07e7870
commit
0e6f74f1f0
1 changed files with 2 additions and 3 deletions
|
@ -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");
|
||||||
|
|
Reference in a new issue