summaryrefslogtreecommitdiff
path: root/web-ui/app/templates/mails/full_view.hbs
diff options
context:
space:
mode:
authorGabriel Albo <gabriel@albo.com.br>2015-02-18 16:45:48 -0200
committerAlexandre Pretto Nunes <anunes@thoughtworks.com>2015-02-19 16:41:24 -0200
commit90f4555ff85bd802f678805068f1776b6804a242 (patch)
tree0e88848f8511bd60bae28a256fc6c6f757cfe05b /web-ui/app/templates/mails/full_view.hbs
parentd576f2362624597993257bf8a6749e1150ee5753 (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/mails/full_view.hbs')
-rw-r--r--web-ui/app/templates/mails/full_view.hbs6
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>