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:
|
||||
|
||||
``` 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");
|
||||
|
|
Reference in a new issue