view plugins/redmine_bibliography/assets/javascripts/bibliography.js @ 1283:006057cf8f16 redmine-2.2-integration

Autocomplete working.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 14 May 2013 14:24:45 +0100
parents 8d30e7644b75
children 8516c3292901
line wrap: on
line source

$("#publication_bibtex_entry_attributes_entry_type").live("change", function() {
    $this = $(this);

    $.ajax({
        type: "get",
        url: "/publications/show_bibtex_fields",
        data: {
            value: $this.val()
        },
        dataType: "script"
    });

    return false;
});