Skip to content
Permalink
Browse files
Button: Refactored formResetHandler and fixed scope. Foxes #7261 - Re…
…fresh scope in formResetHandler unintentionally wide.
  • Loading branch information
scottgonzalez committed May 18, 2011
1 parent d1f86cb commit e0fafbb
Showing 1 changed file with 5 additions and 7 deletions.
@@ -17,13 +17,11 @@ var lastActive, startXPos, startYPos, clickDragged,
baseClasses = "ui-button ui-widget ui-state-default ui-corner-all",
stateClasses = "ui-state-hover ui-state-active ",
typeClasses = "ui-button-icons-only ui-button-icon-only ui-button-text-icons ui-button-text-icon-primary ui-button-text-icon-secondary ui-button-text-only",
formResetHandler = function( event ) {
$( ":ui-button", event.target.form ).each(function() {
var inst = $( this ).data( "button" );
setTimeout(function() {
inst.refresh();
}, 1 );
});
formResetHandler = function() {
var buttons = $( this ).find( ":ui-button" );
setTimeout(function() {
buttons.button( "refresh" );
}, 1 );
},
radioGroup = function( radio ) {
var name = radio.name,

0 comments on commit e0fafbb

Please sign in to comment.