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 / bibtex.js @ 1279:a0488ec6979e

History | View | Annotate | Download (149 Bytes)

1
function toggleBibtex(el) {
2
  var dd = Element.up(el).next('dd');
3

    
4
  dd.toggleClassName('collapsed');
5
  Effect.toggle(dd, 'slide', {duration:0.2});
6
}