Commit 99690b46 authored by GoshaZotov's avatar GoshaZotov Committed by Alexander.Trofimov

delete unused parameter

parent 16ca2ea5
......@@ -548,9 +548,9 @@ var editor;
return ws.changeAutoFilter(tableName, optionType, val);
};
spreadsheet_api.prototype.asc_applyAutoFilter = function(type, autoFilterObject) {
spreadsheet_api.prototype.asc_applyAutoFilter = function(autoFilterObject) {
var ws = this.wb.getWorksheet();
ws.applyAutoFilter(type, autoFilterObject);
ws.applyAutoFilter(autoFilterObject);
};
spreadsheet_api.prototype.asc_sortColFilter = function(type, cellId, displayName) {
......
......@@ -11985,7 +11985,7 @@
this._isLockedAll( onChangeAutoFilterCallback );
};
WorksheetView.prototype.applyAutoFilter = function ( type, autoFilterObject ) {
WorksheetView.prototype.applyAutoFilter = function ( autoFilterObject ) {
var t = this;
var ar = t.activeRange.clone( true );
var onChangeAutoFilterCallback = function ( isSuccess ) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment