You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by ha...@apache.org on 2007/05/22 03:11:35 UTC

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

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;