diff options
| author | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-27 07:36:26 +0000 |
|---|---|---|
| committer | alec <alec@208e9e7b-5314-0410-a742-e7e81cd9613c> | 2009-04-27 07:36:26 +0000 |
| commit | 14ece193ca0ea1d0061d5b3480d97083438a1f64 (patch) | |
| tree | 91865dc9c6469cbc9c68d685249019944fb817e2 /roundcubemail/program/js/tiny_mce/utils | |
| parent | 526541cc8b9c8d0e6ef60d50e15d1e785b8c6d53 (diff) | |
- Updated TinyMCE to 3.2.3 version
git-svn-id: https://svn.roundcube.net/trunk@2432 208e9e7b-5314-0410-a742-e7e81cd9613c
Diffstat (limited to 'roundcubemail/program/js/tiny_mce/utils')
| -rw-r--r-- | roundcubemail/program/js/tiny_mce/utils/form_utils.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roundcubemail/program/js/tiny_mce/utils/form_utils.js b/roundcubemail/program/js/tiny_mce/utils/form_utils.js index c1f140904..dd45e730d 100644 --- a/roundcubemail/program/js/tiny_mce/utils/form_utils.js +++ b/roundcubemail/program/js/tiny_mce/utils/form_utils.js @@ -1,5 +1,5 @@ /**
- * $Id: form_utils.js 673 2008-03-06 13:26:20Z spocke $
+ * $Id: form_utils.js 996 2009-02-06 17:32:20Z spocke $
*
* Various form utilitiy functions.
*
@@ -13,7 +13,7 @@ function getColorPickerHTML(id, target_form_element) { var h = "";
h += '<a id="' + id + '_link" href="javascript:;" onclick="tinyMCEPopup.pickColor(event,\'' + target_form_element +'\');" onmousedown="return false;" class="pickcolor">';
- h += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '"></span></a>';
+ h += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '"> </span></a>';
return h;
}
@@ -50,7 +50,7 @@ function getBrowserHTML(id, target_form_element, type, prefix) { html = "";
html += '<a id="' + id + '_link" href="javascript:openBrowser(\'' + id + '\',\'' + target_form_element + '\', \'' + type + '\',\'' + option + '\');" onmousedown="return false;" class="browse">';
- html += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '"></span></a>';
+ html += '<span id="' + id + '" title="' + tinyMCEPopup.getLang('browse') + '"> </span></a>';
return html;
}
|
