To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / plugins / redmine_bibliography / assets / javascripts / bibliography.js @ 1326:8516c3292901

History | View | Annotate | Download (413 Bytes)

1 1279:a0488ec6979e luis
2 1274:5ea1a213c7a5 luis
$("#publication_bibtex_entry_attributes_entry_type").live("change", function() {
3 1279:a0488ec6979e luis
    $this = $(this);
4
5 1274:5ea1a213c7a5 luis
    $.ajax({
6 1282:8d30e7644b75 luis
        type: "get",
7 1274:5ea1a213c7a5 luis
        url: "/publications/show_bibtex_fields",
8 1279:a0488ec6979e luis
        data: {
9
            value: $this.val()
10
        },
11 1274:5ea1a213c7a5 luis
        dataType: "script"
12
    });
13
14
    return false;
15
});
16 1326:8516c3292901 luis
$(document).ready(function() {
17
    $("#publication_bibtex_entry_attributes_entry_type").trigger('change');
18
});