From 9acda863010cbfc80acc7bcc30dea5094f8cd29f Mon Sep 17 00:00:00 2001 From: noformnocontent Date: Fri, 28 Dec 2012 11:16:36 -0800 Subject: [PATCH] `border-right` doesn't work if used on posts with mentions, `border-left` is ok --- Plugins.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Plugins.md b/Plugins.md index aa6942b..73cacea 100644 --- a/Plugins.md +++ b/Plugins.md @@ -41,14 +41,14 @@ You can use the embeded jQuery too, here for example a plugin which lets you mar ``` js $("ol").delegate('a', 'click dblclick', function(e) { - e.stopPropagation(); + e.stopPropagation(); }).delegate('li', 'dblclick', function(e) { - var li = $(this); - if(li.hasClass("selected")) { - li.removeClass("selected"); - } else { - li.addClass("selected"); - } + var li = $(this); + if(li.hasClass("selected")) { + li.removeClass("selected"); + } else { + li.addClass("selected"); + } }); ``` @@ -56,6 +56,6 @@ And add this to your CSS plugin file. ``` css .selected { - border-right: 5px solid green; + border-left: 5px solid green; } ```