Add a sendToBack connector endpoint for macOS integration window management

This commit is contained in:
Adomas Venčkauskas 2018-04-25 15:41:22 +03:00
parent ac24ffe636
commit 6cf11f083b

View File

@ -70,3 +70,14 @@ Zotero.Server.Endpoints['/connector/document/respond'].prototype = {
Zotero.HTTPIntegrationClient.sendResponse = sendResponse;
}
};
// For managing macOS integration and progress window focus
Zotero.Server.Endpoints['/connector/sendToBack'] = function() {};
Zotero.Server.Endpoints['/connector/sendToBack'].prototype = {
supportedMethods: ["POST"],
supportedDataTypes: ["application/json"],
permitBookmarklet: true,
init: function() {
Zotero.Utilities.Internal.sendToBack();
},
};