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 / new_publication.js @ 1429:5b52161fb034

History | View | Annotate | Download (230 Bytes)

1
// edit_publication.js
2

    
3
$(document).ready(function(){
4
    // adds the events to the edit/save authorship button
5
    $('.author_save_btn').live('click', disable_fields);
6
    $('.author_edit_btn').live('click', enable_fields);
7

    
8

    
9
});