Skip to content

Commit dc4e9fb

Browse files
committed
Remove method argument from _super and _superApply.
1 parent 121a2ea commit dc4e9fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

grid-spf/dataview-preloader.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ $.widget( "ui.preloaderDataview", $.ui.dataview, {
5555
}
5656
});
5757
};
58-
this._super( "_create" );
58+
this._super();
5959
},
6060

6161
_setOptions: function( options ) {
@@ -76,7 +76,7 @@ $.widget( "ui.preloaderDataview", $.ui.dataview, {
7676
options.paging.offset : this.options.paging.offset )
7777
});
7878
}
79-
this._super( "_setOptions", options );
79+
this._super( options );
8080
}
8181
});
8282

ui/jquery.ui.dataview.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ $.widget( "ui.dataview", {
4545
value = null;
4646
}
4747
}
48-
this._super( "_setOption", key, value );
48+
this._super( key, value );
4949
},
5050

5151
page: function( pageIndex ) {

0 commit comments

Comments
 (0)