Skip to content

Commit 45d6cb5

Browse files
committed
Remove method argument from _super and _superApply.
1 parent 283c1f3 commit 45d6cb5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ui/jquery.ui.mask.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,14 +59,14 @@ $.widget( "ui.mask", {
5959
},
6060

6161
_setOption: function( key, value ) {
62-
this._super( "_setOption", key, value );
62+
this._super( key, value );
6363
if ( key === "mask" ) {
6464
this._parseMask();
6565
this._parseValue();
6666
}
6767
},
6868
_setOptions: function( options ) {
69-
this._super( "_setOptions", options );
69+
this._super( options );
7070
this._paint();
7171
},
7272

ui/jquery.ui.timepicker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ $.widget( "ui.timepicker", {
224224
var currentValue = this.value();
225225

226226
// change the option
227-
this._super( "_setOptions", options );
227+
this._super( options );
228228

229229
// update the mask, all of the option changes have a chance of changing it
230230
this.element.mask( "option", "mask", this._generateMask() );

0 commit comments

Comments
 (0)