To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / plugins / redmine_bibliography / assets / javascripts / bibliography.js @ 1365:72b6d7a2383d
History | View | Annotate | Download (413 Bytes)
| 1 |
|
|---|---|
| 2 |
$("#publication_bibtex_entry_attributes_entry_type").live("change", function() { |
| 3 |
$this = $(this); |
| 4 |
|
| 5 |
$.ajax({
|
| 6 |
type: "get", |
| 7 |
url: "/publications/show_bibtex_fields", |
| 8 |
data: {
|
| 9 |
value: $this.val() |
| 10 |
}, |
| 11 |
dataType: "script" |
| 12 |
}); |
| 13 |
|
| 14 |
return false; |
| 15 |
}); |
| 16 |
$(document).ready(function() { |
| 17 |
$("#publication_bibtex_entry_attributes_entry_type").trigger('change'); |
| 18 |
}); |