xref: /plugin/doi/script.js (revision 72b0d3f325724d8c5b177372a45bde99e1b38a40)
1/**
2 * Editor button
3 */
4if (typeof window.toolbar !== 'undefined') {
5    window.toolbar[window.toolbar.length] = {
6        type: "picker",
7        title: LANG.plugins.doi.toolbarButton,
8        icon: "../../plugins/doi/img/library.png",
9        class: "plugin_doi_picker_narrow",
10        list: [
11            {
12                title: "DOI",
13                type: "format",
14                icon: "../../plugins/doi/img/doi.png",
15                open: "[[doi>",
16                close: "]]",
17            },
18            {
19                title: "ISBN",
20                type: "format",
21                icon: "../../plugins/doi/img/ISBN.png",
22                open: "[[isbn>",
23                close: "]]",
24            }
25        ]
26    };
27}
28