diff --git a/e107_web/js/core/admin.jquery.js b/e107_web/js/core/admin.jquery.js index eb8ff7ab8..801f6d7d2 100644 --- a/e107_web/js/core/admin.jquery.js +++ b/e107_web/js/core/admin.jquery.js @@ -273,6 +273,13 @@ $(document).ready(function() $("div.tbox,input,textarea,select,label,.e-tip").each(function(c) { var t = $(this).nextAll(".field-help"); + + if($(this).is("textarea")) + { + var placement = 'top'; + } + + t.hide(); // alert('hello'); $(this).tooltip({ @@ -282,7 +289,7 @@ $(document).ready(function() }, fade: true, html: true, - placement: 'right', + placement: placement, delay: { show: 300, hide: 600 } });