summaryrefslogtreecommitdiff
path: root/ext/mixed
diff options
context:
space:
mode:
authortoasted-nutbread <toasted-nutbread@users.noreply.github.com>2021-02-08 17:53:02 -0500
committerGitHub <noreply@github.com>2021-02-08 17:53:02 -0500
commitbb8a521dff8ee314ab71bceb4bb2dcbe82b7a547 (patch)
treec4926c6d92a04ff1feb75fbbc40a3ebc99cbe13a /ext/mixed
parent73e91b3b62f5ca07bcf2bf66e54e0d16af73dd42 (diff)
Remove unused api functions (#1354)
* Remove screenshotGet * Remove downloadDefinitionAudio * Remove clipboardGetImage
Diffstat (limited to 'ext/mixed')
-rw-r--r--ext/mixed/js/api.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/ext/mixed/js/api.js b/ext/mixed/js/api.js
index 03e58f5e..fc765063 100644
--- a/ext/mixed/js/api.js
+++ b/ext/mixed/js/api.js
@@ -101,18 +101,10 @@ const api = (() => {
return this._invoke('getExpressionAudioInfoList', {source, expression, reading, details});
}
- downloadDefinitionAudio(sources, expression, reading, details) {
- return this._invoke('downloadDefinitionAudio', {sources, expression, reading, details});
- }
-
commandExec(command, params) {
return this._invoke('commandExec', {command, params});
}
- screenshotGet(options) {
- return this._invoke('screenshotGet', {options});
- }
-
sendMessageToFrame(frameId, action, params) {
return this._invoke('sendMessageToFrame', {frameId, action, params});
}
@@ -141,10 +133,6 @@ const api = (() => {
return this._invoke('clipboardGet');
}
- clipboardGetImage() {
- return this._invoke('clipboardGetImage');
- }
-
getDisplayTemplatesHtml() {
return this._invoke('getDisplayTemplatesHtml');
}