view plugins/redmine_bibliography/assets/javascripts/bibliography.js @ 1398:92d854be33d5 biblio_alt_search_auth

removed wrong id
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Sat, 28 Sep 2013 16:22:56 +0100
parents 0f918e37e1d6
children 00a51e442fe9
line wrap: on
line source
// bibliography.js

function disable_fields(){
	$this = $(this);

	$author_info = $this.closest('div').prev();
//    $author_info.children('.description').toggle();
	$author_info.find('p :input').attr("readonly", true);
    $author_info.find('p :input').addClass('readonly');

    $this.siblings('.author_edit_btn').show();
    $this.hide();

    return false;
}

function enable_fields(){
    $this = $(this);

    $author_info = $this.closest('div').prev();
//    $author_info.children('.description').toggle();
    $author_info.find('p :input').attr("readonly", false);
    $author_info.find('p :input').removeClass('readonly');

    $this.siblings('.author_save_btn').show();
    $this.hide();

    return false;
}