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 @ 1275:1194982f28ba

History | View | Annotate | Download (309 Bytes)

1 1274:5ea1a213c7a5 luis
$("#publication_bibtex_entry_attributes_entry_type").live("change", function() {
2
    $.ajax({
3
        type: "POST",
4
        url: "/publications/show_bibtex_fields",
5
        data: "value=" + $("#publication_bibtex_entry_attributes_entry_type").val(),
6
        dataType: "script"
7
    });
8
9
    return false;
10
});