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 / edit_publication.js @ 1425:cd304b50908c

History | View | Annotate | Download (419 Bytes)

1 1389:641ec1b288a6 luis
// edit_publication.js
2
3
$(document).ready(function(){
4
    // shows the correct bibtex fields
5
    $('#publication_bibtex_entry_attributes_entry_type').trigger('change');
6
7
    // adds the events to the edit/save authorship button
8
    $('.author_save_btn').live('click', disable_fields);
9
    $('.author_edit_btn').live('click', enable_fields);
10
11
    // clicks all authorships
12
    $('.author_save_btn').trigger('click');
13
});