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 @ 1274:5ea1a213c7a5

History | View | Annotate | Download (265 Bytes)

1 1274:5ea1a213c7a5 luis
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)){
10
        $this.show();
11
    }
12
});