Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Dialog: Added some missing semicolons.
  • Loading branch information
scottgonzalez committed Nov 12, 2010
1 parent 5dad57e commit c2139fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ui/jquery.ui.dialog.js
Expand Up @@ -586,7 +586,7 @@ $.widget("ui.dialog", {
}
break;
case "draggable":
var isDraggable = uiDialog.is( ":data(draggable)" )
var isDraggable = uiDialog.is( ":data(draggable)" );
if ( isDraggable && !value ) {
uiDialog.draggable( "destroy" );
}
Expand All @@ -600,7 +600,7 @@ $.widget("ui.dialog", {
break;
case "resizable":
// currently resizable, becoming non-resizable
var isResizable = uiDialog.is( ":data(resizable)" )
var isResizable = uiDialog.is( ":data(resizable)" );
if (isResizable && !value) {
uiDialog.resizable('destroy');
}
Expand Down

0 comments on commit c2139fc

Please sign in to comment.