NIHVIVO-1487 new javascript file

This commit is contained in:
ass92 2011-01-05 04:16:49 +00:00
parent 45b6e6d91c
commit e4585e9c4d

View file

@ -0,0 +1,14 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
$(document).ready(function(){
$('#takeuri').submit(function() {
if ($('#namespace').val() == '') {
alert('Please enter URI prefix.');
return false;
}
});
});