Skip to content

Commit

Permalink
remove deprecated downloadReady logic
Browse files Browse the repository at this point in the history
  • Loading branch information
olifolkerd committed Jan 19, 2025
1 parent d240a35 commit 76b6946
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/js/modules/Download/Download.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ export default class Download extends Module{
this.registerTableOption("downloadEncoder", function(data, mimeType){
return new Blob([data],{type:mimeType});
}); //function to manipulate download data
// this.registerTableOption("downloadReady", undefined); //warn of function deprecation
this.registerTableOption("downloadConfig", {}); //download config
this.registerTableOption("downloadRowRange", "active"); //restrict download to active rows only

Expand All @@ -31,7 +30,7 @@ export default class Download extends Module{
}

deprecatedOptionsCheck(){
// this.deprecationCheck("downloadReady", "downloadEncoder");

}

///////////////////////////////////
Expand Down

0 comments on commit 76b6946

Please sign in to comment.