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
       $(this).one("load", function() {
414
       $(this).one("load", function() {
415
           var par = $(this).parents('.avatar')
415
           var par = $(this).parents('.avatar')
416
           if (par.height()) {
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
       if (this.complete) $(this).load()
420
       if (this.complete) $(this).load()

Loading…
Cancel
Save