use border-right-color for firefox

This commit is contained in:
Michael Save 2012-03-15 18:57:43 +11:00
parent f3d784de51
commit ae848ef666

View File

@ -21,7 +21,7 @@ $(document).ready(function(){
var post = $('div.post#reply_' + id);
$(this).hover(function() {
post.attr('style', 'border-style: none dashed dashed none; background: ' + post.css('border-color'));
post.attr('style', 'border-style: none dashed dashed none; background: ' + post.css('border-right-color'));
}, function() {
post.attr('style', '');
});