diff options
author | Scott González <scott.gonzalez@gmail.com> | 2010-08-27 18:02:11 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2010-08-27 18:02:11 -0400 |
commit | 79ee6f0d7b94b71d89f30019e66a1746696d5608 (patch) | |
tree | f8d7cdf363a80371ab0463e5b78f6d1c7ae89401 /ui/jquery.ui.dialog.js | |
parent | af9864dcc439bf8d04f4ade248725cc217f66d56 (diff) | |
download | jquery-ui-79ee6f0d7b94b71d89f30019e66a1746696d5608.tar.gz jquery-ui-79ee6f0d7b94b71d89f30019e66a1746696d5608.zip |
Dialog: When using the title attribute, update the title option. Fixes #5877 - Dialog: when using the title attribute, the title option should be updated.
Diffstat (limited to 'ui/jquery.ui.dialog.js')
-rw-r--r-- | ui/jquery.ui.dialog.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index 1f3bd60f0..ff2375164 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -67,10 +67,11 @@ $.widget("ui.dialog", { this.originalTitle = ""; } + this.options.title = this.options.title || this.originalTitle; var self = this, options = self.options, - title = options.title || self.originalTitle || ' ', + title = options.title || ' ', titleId = $.ui.dialog.getTitleId(self.element), uiDialog = (self.uiDialog = $('<div></div>')) |