r3566 committed - button: fixed typo in classname, fixing active state on init

r3566 committed - button: fixed typo in classname, fixing active state on init

Revision: 3566
Author: joern.zaefferer
Date: Wed Dec 30 14:10:58 2009
Log: button: fixed typo in classname, fixing active state on init
http://code.google.com/p/jquery-ui/source/detail?r=3566
Modified:
/branches/dev/ui/jquery.ui.button.js
=======================================
--- /branches/dev/ui/jquery.ui.button.js    Wed Dec 30 12:14:25 2009
+++ /branches/dev/ui/jquery.ui.button.js    Wed Dec 30 14:10:58 2009
@@ -116,7 +116,7 @@
            this.element.hide();
            if (this.element.is(':checked')) {
-                this.buttonElement.addClass('ui-state-actiave');
+                this.buttonElement.addClass('ui-state-active');
            }
        } else {
            this.buttonElement = this.element;
--