svn commit: r540386 - /ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r540386 - /ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js

hansbak-2
Author: hansbak
Date: Mon May 21 18:11:35 2007
New Revision: 540386

URL: http://svn.apache.org/viewvc?view=rev&rev=540386
Log:
remove the alert screen for not supported browsers in the whizzywig editor. In these browsers however html can still be edited normally

Modified:
    ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js

Modified: ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js?view=diff&rev=540386&r1=540385&r2=540386
==============================================================================
--- ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js (original)
+++ ofbiz/trunk/framework/images/webapp/images/htmledit/whizzywig.js Mon May 21 18:11:35 2007
@@ -35,7 +35,7 @@
 
 function makeWhizzyWig(txtArea, controls){ // make a WhizzyWig from the textarea
  if ((navigator.userAgent.indexOf('Safari') != -1 ) || !document.getElementById || !document.designMode ) {//no designMode
-  alert("Whizzywig "+t("editor not available for your browser"));
+  // alert("Whizzywig "+t("editor not available for your browser"));
   return;
  }
  idTa = txtArea;