Browse Source

fix of setting of profile modal's postboard height

master
Simon Grim 10 years ago
parent
commit
498470f436
  1. 2
      js/interface_common.js

2
js/interface_common.js

@ -110,7 +110,7 @@ function openProfileModalWithUsernameHandler(username) { @@ -110,7 +110,7 @@ function openProfileModalWithUsernameHandler(username) {
}
content.find('.postboard') // potentially dangerous fix because it's supposed for vertical oriented profile modals
.height(content.height() - content.find('.profile-card').outerHeight());
.height(content.outerHeight() - content.find('.profile-card').outerHeight());
}
function openHashtagModalFromSearchHandler(hashtag) {

Loading…
Cancel
Save