summaryrefslogtreecommitdiff
path: root/ishtar_pdl/static/pdl/JQueryCorporation.js
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_pdl/static/pdl/JQueryCorporation.js')
-rw-r--r--ishtar_pdl/static/pdl/JQueryCorporation.js14
1 files changed, 0 insertions, 14 deletions
diff --git a/ishtar_pdl/static/pdl/JQueryCorporation.js b/ishtar_pdl/static/pdl/JQueryCorporation.js
deleted file mode 100644
index e65001506..000000000
--- a/ishtar_pdl/static/pdl/JQueryCorporation.js
+++ /dev/null
@@ -1,14 +0,0 @@
-var current_status = 'corporation';
-
-$(function() {
- var $radios = $('input:radio[name=person_type]');
- if($radios.is(':checked') === false) {
- $radios.filter('[value='+ current_status +']').prop('checked', true);
- }
-
- $radios.change(function(){
- var loc = window.location;
- window.location = loc.protocol + '//' + loc.host + loc.pathname + "?status=" + $('input:radio[name=person_type]:checked').val();
- });
- $("#corporation_div").show();
-});