Salome HOME
Our $() javascript function is removed to be able to use jQuery.
[tools/siman.git] / Workspace / Siman / WebContent / rtef / richtext.js
index 1acd7a9fab570613095b7e22995a407b21b53adf..3dada53abc36cea1123b0866b021f3c833006638 100644 (file)
@@ -34,6 +34,7 @@
 ////////////////////////////////////////////////////////////////////////////////
 
 // Constants
+var ctxpath = "/siman/";
 var minWidth = 450;                                    // minumum width
 var wrapWidth = 1245;                      //width at which all icons will appear on one bar
 var maxchar = 64000;                // maximum number of characters per save
@@ -135,7 +136,7 @@ function initTextInput() {
 
     wrapWidth   = 14 * 24;
     defaultFont = "Arial, Helvetica, sans-serif";
-    initRTE("../rtef/images/", "../rtef/", "", true);
+    initRTE(ctxpath + "rtef/images/", ctxpath + "rtef/", "", true);
 }
 
 function initTextEditor() {
@@ -158,7 +159,7 @@ function initTextEditor() {
 
     wrapWidth   = 15 * 24;
     defaultFont = "Arial, Helvetica, sans-serif";
-    initRTE("../rtef/images/", "../rtef/", "", true);
+    initRTE(ctxpath + "rtef/images/", ctxpath + "rtef/", "", true);
 }
 
 function addCommand(name, action) {