NIHVIVO-193 Added Javascript functionality to custom form for person has position

This commit is contained in:
rjy7 2010-03-30 01:03:56 +00:00
parent 5ae39b8382
commit a451740c85
4 changed files with 29 additions and 2 deletions

View file

@ -0,0 +1,5 @@
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
String.prototype.capitalize = function() {
return this.substring(0,1).toUpperCase() + this.substring(1);
};