diff options
author | Richard D. Worth <rdworth@gmail.com> | 2011-05-09 06:50:19 -0700 |
---|---|---|
committer | Richard D. Worth <rdworth@gmail.com> | 2011-05-09 06:50:19 -0700 |
commit | 2e882de30e18b91ec77e67805fc5169c3ac58096 (patch) | |
tree | 0fb3890bc595a364613219984748e2e152530a21 | |
parent | 91a9ff20d9165aaf398004a13fc82b62d4de40f1 (diff) | |
parent | 27f943bf36dcf64fc901ff09515250ff84ddc7cc (diff) | |
download | jquery-ui-2e882de30e18b91ec77e67805fc5169c3ac58096.tar.gz jquery-ui-2e882de30e18b91ec77e67805fc5169c3ac58096.zip |
Merge pull request #229 from kzys/strange-whitespace
'NO-BREAK SPACE' (U+00A0) is not 'SPACE' (U+0020).
-rw-r--r-- | ui/jquery.ui.dialog.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/jquery.ui.dialog.js b/ui/jquery.ui.dialog.js index 8423d1164..2138a9a58 100644 --- a/ui/jquery.ui.dialog.js +++ b/ui/jquery.ui.dialog.js @@ -281,7 +281,7 @@ $.widget("ui.dialog", { options = self.options, uiDialog = self.uiDialog; - self.overlay = options.modal ? new $.ui.dialog.overlay( self ) : null; + self.overlay = options.modal ? new $.ui.dialog.overlay( self ) : null; self._size(); self._position( options.position ); uiDialog.show( options.show ); |