Changeset 13335
- Timestamp:
- 04/16/08 07:39:04 (7 months ago)
- Location:
- dijit/trunk
- Files:
-
- 2 modified
-
form/Textarea.js (modified) (1 diff)
-
_editor/RichText.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dijit/trunk/form/Textarea.js
r13328 r13335 142 142 // In addition, since a <label> element can not be associated with an iframe, if 143 143 // this control has a label, insert the label text into the title as well. 144 var _nlsResources = dojo.i18n.getLocalization("dijit ", "Textarea");144 var _nlsResources = dojo.i18n.getLocalization("dijit.form", "Textarea"); 145 145 this._iframeEditTitle = _nlsResources.iframeEditTitle; 146 146 this._iframeFocusTitle = _nlsResources.iframeFocusTitle; -
dijit/trunk/_editor/RichText.js
r13328 r13335 466 466 this.editorObject = this.iframe; 467 467 // get screen reader text for mozilla here, too 468 this._localizedIframeTitles = dojo.i18n.getLocalization("dijit ", "Textarea");468 this._localizedIframeTitles = dojo.i18n.getLocalization("dijit.form", "Textarea"); 469 469 // need to find any associated label element and update iframe document title 470 470 var label=dojo.query('label[for="'+this.id+'"]');