(Arrays.asList("../js/customForms/personHasPositionHistory.js"));
+ request.setAttribute("customJs", customJs);
%>
@@ -239,6 +239,10 @@
${title}
" >
+
+
@@ -248,7 +252,7 @@
-
+
diff --git a/productMods/js/customForms/personHasPositionHistory.js b/productMods/js/customForms/personHasPositionHistory.js
index e69de29b..acdc908c 100644
--- a/productMods/js/customForms/personHasPositionHistory.js
+++ b/productMods/js/customForms/personHasPositionHistory.js
@@ -0,0 +1,12 @@
+var personHasPositionHistory = {
+
+ onLoad: function() {
+ $("#newOrg").hide();
+ $("#position").hide();
+ $("#submit").val("Continue");
+ }
+};
+
+$(document).ready(function(){
+ personHasPositionHistory.onLoad();
+});