which code is calling the site translators?
hi everyone,
my question is where document(page) is get and pass to translators?
and what is doing this code?
Zotero.Utilities.processDocuments(URIs, scrape, function ()
{
Zotero.done();
});
any documentation is available to understand these code?
please help me...
waiting for the response.
Thanks,
my question is where document(page) is get and pass to translators?
and what is doing this code?
Zotero.Utilities.processDocuments(URIs, scrape, function ()
{
Zotero.done();
});
any documentation is available to understand these code?
please help me...
waiting for the response.
Thanks,
This is an old discussion that has not been active in a long time. Before commenting here, you should strongly consider starting a new discussion instead. If you think the content of this discussion is still relevant, you can link to it from your new discussion.
http://www.zotero.org/support/dev/translators/coding#batch_saving
the callback function with Zotero.done() isn't actually necessary here anymore - it is a relic from Zotero before version 3. The above could be rewritten as
ZU.processDocuments(URIs, scrape)