Changeset 3474 for trunk/ui/jquery.ui.dialog.js
- Timestamp:
- 11/21/09 08:59:08 (4 months ago)
- Files:
-
- 1 modified
-
trunk/ui/jquery.ui.dialog.js (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ui/jquery.ui.dialog.js
r3337 r3474 36 36 options = self.options, 37 37 38 title = options.title || self.originalTitle || '& nbsp;',38 title = options.title || self.originalTitle || ' ', 39 39 titleId = $.ui.dialog.getTitleId(self.element), 40 40 … … 478 478 case "title": 479 479 // convert whatever was passed in o a string, for html() to not throw up 480 $(".ui-dialog-title", self.uiDialogTitlebar).html("" + (value || '& nbsp;'));480 $(".ui-dialog-title", self.uiDialogTitlebar).html("" + (value || ' ')); 481 481 break; 482 482 case "width":