Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
[controlgroup] Was using wrong calling convention for this._super()
Browse files Browse the repository at this point in the history
  • Loading branch information
Gabriel Schulhof committed Nov 2, 2012
1 parent bb70b39 commit bb945fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/widgets/controlgroup.js
Expand Up @@ -63,7 +63,7 @@ define( [ "jquery",
this[ setter ]( value );
}

this._super( "_setOption", key, value );
this._super( key, value );
this.element.attr( "data-" + ( $.mobile.ns || "" ) + ( key.replace( /([A-Z])/, "-$1" ).toLowerCase() ), value );
},

Expand Down

0 comments on commit bb945fc

Please sign in to comment.