From 6649b1f0a5db6160d197a13ca79cfd67fbb02d77 Mon Sep 17 00:00:00 2001
From: svncommit <devs@roundcube.net>
Date: Sat, 23 Sep 2006 19:37:29 -0400
Subject: [PATCH] added TinyMCE spellchecker plugin, configured to use GoogleSpell

---
 program/js/common.js |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/program/js/common.js b/program/js/common.js
index 7ac3dc8..b0dc556 100644
--- a/program/js/common.js
+++ b/program/js/common.js
@@ -343,6 +343,13 @@
   }
 
 
+// make a string URL safe
+function urlencode(str)
+{
+  return window.encodeURI ? encodeURI(str).replace(/&/g, '%26') : escape(str);
+}
+
+
 // get any type of html objects by id/name
 function rcube_find_object(id, d)
   {

--
Gitblit v1.9.1