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 / public / javascripts / repository.js @ 1358:b8f94812d737

History | View | Annotate | Download (265 Bytes)

1 1355:3d01be97cb5a chris
function toggle_ext_url() {
2
    if (document.getElementById('repository_is_external').checked) {
3
        document.getElementById('repository_external_url').disabled = false;
4
    } else {
5
        document.getElementById('repository_external_url').disabled = true;
6
    }
7 212:f5860b03d365 luis
}