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

@ -60,6 +60,7 @@
</script>
<% } %>
<script language="javascript" type="text/javascript" src="../js/extensions/String.js"></script>
<script language="javascript" type="text/javascript" src="../js/jquery.js"></script>
<script language="javascript" type="text/javascript" src="../js/jquery_plugins/jquery.bgiframe.pack.js"></script>
<script language="javascript" type="text/javascript" src="../js/jquery_plugins/thickbox/thickbox-compressed.js"></script>

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);
};