[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 295e80ba5a6da472edd7299098a336c4007d26be
Ivan
ivan at 420.am
Tue Mar 19 17:44:05 PDT 2013
The branch, FREESIDE_2_3_BRANCH has been updated
via 295e80ba5a6da472edd7299098a336c4007d26be (commit)
from 4ff563bad0dd485262af7994eca593d4320db054 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 295e80ba5a6da472edd7299098a336c4007d26be
Author: Ivan Kohler <ivan at freeside.biz>
Date: Tue Mar 19 17:44:04 2013 -0700
quick fix for IE10 issue w/fckeditor, RT#22014
diff --git a/httemplate/elements/fckeditor/fckeditor.js b/httemplate/elements/fckeditor/fckeditor.js
index 8e0126b..eb7d339 100644
--- a/httemplate/elements/fckeditor/fckeditor.js
+++ b/httemplate/elements/fckeditor/fckeditor.js
@@ -304,7 +304,7 @@ function FCKeditor_IsCompatibleBrowser()
// Internet Explorer 5.5+
if ( /*@cc_on!@*/false && sAgent.indexOf("mac") == -1 )
{
- var sBrowserVersion = navigator.appVersion.match(/MSIE (.\..)/)[1] ;
+ var sBrowserVersion = navigator.appVersion.match(/MSIE ([\d.]+)/)[1] ;
return ( sBrowserVersion >= 5.5 ) ;
}
-----------------------------------------------------------------------
Summary of changes:
httemplate/elements/fckeditor/fckeditor.js | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list