From: Janusz Dobrowolski Date: Wed, 3 Aug 2011 11:09:01 +0000 (+0200) Subject: Fixed problem with unscrollable content in larger popup windows. X-Git-Tag: 2.3-final~592 X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=commitdiff_plain;h=847876006a1caee9d6b6e3107d4ad5d075d0c62e;p=fa-stable.git Fixed problem with unscrollable content in larger popup windows. --- diff --git a/js/inserts.js b/js/inserts.js index 022ce509..a4207dec 100644 --- a/js/inserts.js +++ b/js/inserts.js @@ -169,7 +169,7 @@ function callEditor(key) { var el = document.getElementsByName(editors[key][1])[0]; if(_w) _w.close(); // this is really necessary to have window on top in FF2 :/ _w = open(editors[key][0]+el.value+'&popup=1', - "edit","Scrollbars=0,resizable=0,width="+editors[key][2]+",height="+editors[key][3]); + "edit","scrollbars=yes,resizable=0,width="+editors[key][2]+",height="+editors[key][3]); if (_w.opener == null) _w.opener = self; editors._call = key; // store call point for passBack