Update unused arguments
This commit is contained in:
parent
ef833d2bea
commit
acb70f126c
@ -108,11 +108,11 @@ class AnkiConnect {
|
||||
*/
|
||||
|
||||
class AnkiNull {
|
||||
async addNote(note) {
|
||||
async addNote() {
|
||||
return null;
|
||||
}
|
||||
|
||||
async canAddNotes(notes) {
|
||||
async canAddNotes() {
|
||||
return [];
|
||||
}
|
||||
|
||||
@ -124,15 +124,15 @@ class AnkiNull {
|
||||
return [];
|
||||
}
|
||||
|
||||
async getModelFieldNames(modelName) {
|
||||
async getModelFieldNames() {
|
||||
return [];
|
||||
}
|
||||
|
||||
async guiBrowse(query) {
|
||||
async guiBrowse() {
|
||||
return [];
|
||||
}
|
||||
|
||||
async findNoteIds(notes) {
|
||||
async findNoteIds() {
|
||||
return [];
|
||||
}
|
||||
}
|
||||
|
@ -177,7 +177,7 @@ class Backend {
|
||||
}
|
||||
}
|
||||
|
||||
checkLastError(e) {
|
||||
checkLastError() {
|
||||
// NOP
|
||||
}
|
||||
}
|
||||
|
@ -167,7 +167,7 @@ class DisplaySearch extends Display {
|
||||
this.onSearchQueryUpdated(query, true);
|
||||
}
|
||||
|
||||
onPopState(e) {
|
||||
onPopState() {
|
||||
const query = DisplaySearch.getSearchQueryFromLocation(window.location.href) || '';
|
||||
if (this.query !== null) {
|
||||
if (this.isWanakanaEnabled()) {
|
||||
@ -245,7 +245,7 @@ class DisplaySearch extends Display {
|
||||
|
||||
initClipboardMonitor() {
|
||||
// ignore copy from search page
|
||||
window.addEventListener('copy', (e) => {
|
||||
window.addEventListener('copy', () => {
|
||||
this.clipboardPrevText = document.getSelection().toString().trim();
|
||||
});
|
||||
}
|
||||
|
@ -113,6 +113,6 @@ function _apiInvoke(action, params={}) {
|
||||
});
|
||||
}
|
||||
|
||||
function _apiCheckLastError(e) {
|
||||
function _apiCheckLastError() {
|
||||
// NOP
|
||||
}
|
||||
|
@ -122,7 +122,7 @@ class Frontend {
|
||||
}
|
||||
}
|
||||
|
||||
onMouseOut(e) {
|
||||
onMouseOut() {
|
||||
this.popupTimerClear();
|
||||
}
|
||||
|
||||
@ -135,7 +135,7 @@ class Frontend {
|
||||
}
|
||||
}
|
||||
|
||||
onAuxClick(e) {
|
||||
onAuxClick() {
|
||||
this.preventNextContextMenu = false;
|
||||
}
|
||||
|
||||
|
@ -375,7 +375,7 @@ class TextSourceElement {
|
||||
return this.content.length;
|
||||
}
|
||||
|
||||
setStartOffset(length) {
|
||||
setStartOffset() {
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
@ -42,7 +42,7 @@ class Display {
|
||||
this.setInteractive(true);
|
||||
}
|
||||
|
||||
onError(error) {
|
||||
onError(_error) {
|
||||
throw new Error('Override me');
|
||||
}
|
||||
|
||||
@ -90,7 +90,7 @@ class Display {
|
||||
}
|
||||
}
|
||||
|
||||
onGlossaryMouseMove(e) {
|
||||
onGlossaryMouseMove() {
|
||||
this.clickScanPrevent = true;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user