From 02c32959d9761e56be9471f87eff0554b4f4a61d Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 23 Apr 2010 12:08:55 -0400 Subject: [PATCH] Button: Added missing semicolon. Fixes #5536 - Mission semicolon on line 5368. --- ui/jquery.ui.button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/jquery.ui.button.js b/ui/jquery.ui.button.js index ff2c1ebb6..4180f3613 100644 --- a/ui/jquery.ui.button.js +++ b/ui/jquery.ui.button.js @@ -356,7 +356,7 @@ $.widget( "ui.buttonset", { }) .removeClass( "ui-corner-left ui-corner-right" ) .end() - .button( "destroy" ) + .button( "destroy" ); $.Widget.prototype.destroy.call( this ); } -- 2.39.5