diff options
Diffstat (limited to 'ext/mixed/js/api.js')
| -rw-r--r-- | ext/mixed/js/api.js | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/ext/mixed/js/api.js b/ext/mixed/js/api.js index 8ed1d996..5ec93b01 100644 --- a/ext/mixed/js/api.js +++ b/ext/mixed/js/api.js @@ -101,6 +101,14 @@ function apiClipboardGet() {      return _apiInvoke('clipboardGet');  } +function apiGetDisplayTemplatesHtml() { +    return _apiInvoke('getDisplayTemplatesHtml'); +} + +function apiGetZoom() { +    return _apiInvoke('getZoom'); +} +  function _apiInvoke(action, params={}) {      const data = {action, params};      return new Promise((resolve, reject) => {  |