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 @ 1379:1053a56bccec

History | View | Annotate | Download (234 Bytes)

1 1379:1053a56bccec luis
// bibliography.js
2
3
function disable_fields(){
4
        $this = $(this);
5
        $author_info = $this.closest('div').prev();
6
        $author_info.children('.description').toggle();
7
        $author_info.find('p :input').attr("readonly", true);
8
9
    return false;
10
}