-
Bug
-
Resolution: Fixed
-
Major
-
3.9, 4.0RC2
-
None
getSemanticAnnotation in RichText.js (RichText.i18n.js in 3.9).
for (var i=0; this._annotations.length; i++)
Should be
for (var i=0; i < this._annotations.length; i++)
getSemanticAnnotation in RichText.js (RichText.i18n.js in 3.9).
for (var i=0; this._annotations.length; i++)
Should be
for (var i=0; i < this._annotations.length; i++)