diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2015-02-18 16:45:48 -0200 |
---|---|---|
committer | Alexandre Pretto Nunes <anunes@thoughtworks.com> | 2015-02-19 16:41:24 -0200 |
commit | 90f4555ff85bd802f678805068f1776b6804a242 (patch) | |
tree | 0e88848f8511bd60bae28a256fc6c6f757cfe05b /web-ui/app/templates | |
parent | d576f2362624597993257bf8a6749e1150ee5753 (diff) |
#239 Removing function that dynamically sets a margin-top to the full email view body according to the message header size. This *should* work as the message header is no longer fixed (position:fixed)
Diffstat (limited to 'web-ui/app/templates')
-rw-r--r-- | web-ui/app/templates/mails/full_view.hbs | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/web-ui/app/templates/mails/full_view.hbs b/web-ui/app/templates/mails/full_view.hbs index d05537f3..c72b3af9 100644 --- a/web-ui/app/templates/mails/full_view.hbs +++ b/web-ui/app/templates/mails/full_view.hbs @@ -81,9 +81,3 @@ </div> {{/if}} </div> -<script> - (function () { - var height = $(".msg-header")[0].offsetHeight; - $(".bodyArea")[0].style.marginTop = height + 'px'; - }()); -</script> |