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 / app / views / publications / show_bibtex_fields.js.erb @ 1424:637ee26ae557

History | View | Annotate | Download (310 Bytes)

1
fields = <%= @fields.to_json.html_safe -%>;
2

    
3
$.each($(".bibtex"), function( key, value ) {
4
    $this = $(this);
5

    
6
    input_id = $this.children('input').attr('id');
7
    name = input_id.split('_')[4];
8

    
9
    if ($.inArray(name, fields) !== -1){
10
        $this.show();
11
    }
12
    else{
13
        $this.hide();
14
    }
15
});