view public/javascripts/repository.js @ 1380:fa92d13876d0 luisf

Authorship Edit/Save buttons now working properly in the publication#new view.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Sat, 31 Aug 2013 18:36:57 +0100
parents 3d01be97cb5a
children
line wrap: on
line source
function toggle_ext_url() {
    if (document.getElementById('repository_is_external').checked) {
        document.getElementById('repository_external_url').disabled = false;
    } else {
	document.getElementById('repository_external_url').disabled = true;
    }
}