Changeset 13335

Show
Ignore:
Timestamp:
04/16/08 07:39:04 (7 months ago)
Author:
doughays
Message:

References #6538. Fixed bundle location for Textarea in 1.2 trunk.

Location:
dijit/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • dijit/trunk/form/Textarea.js

    r13328 r13335  
    142142                        // In addition, since a <label> element can not be associated with an iframe, if  
    143143                        // 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"); 
    145145                        this._iframeEditTitle = _nlsResources.iframeEditTitle; 
    146146                        this._iframeFocusTitle = _nlsResources.iframeFocusTitle; 
  • dijit/trunk/_editor/RichText.js

    r13328 r13335  
    466466                        this.editorObject = this.iframe; 
    467467                        // 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"); 
    469469                        // need to find any associated label element and update iframe document title 
    470470                        var label=dojo.query('label[for="'+this.id+'"]');