Browse Source

Remove now-unneeded offset from avatar height locking

spaghetti 8 years ago
parent
commit
ee6843cd63
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      static/functions/comments.js

+ 1
- 1
static/functions/comments.js View File

@@ -414,7 +414,7 @@ $(document).ready(function() {
414 414
       $(this).one("load", function() {
415 415
           var par = $(this).parents('.avatar')
416 416
           if (par.height()) {
417
-              par.raw().style.height = par.height()-2+'px'
417
+              par.raw().style.height = par.height()+'px'
418 418
           }
419 419
       })
420 420
       if (this.complete) $(this).load()

Loading…
Cancel
Save