Änderungen an login.flex

This commit is contained in:
ja
2021-09-28 16:44:10 +02:00
parent 526ad4d86e
commit 1737f4c336
2 changed files with 7 additions and 5 deletions

View File

@@ -282,7 +282,7 @@
var last = $.cookie('activeAccordionGroup'); var last = $.cookie('activeAccordionGroup');
if (last != null) { if (last != null) {
//remove default collapse settings //remove default collapse settings
$("#accordionExample .panel-collapse").removeClass('in'); $("#accordionExample .accordion-collapse collapse hide").removeClass('in');
//show the account_last visible group //show the account_last visible group
$("#" + last).addClass("in"); $("#" + last).addClass("in");
} }

View File

@@ -155,18 +155,20 @@
/*window.top.postMessage(getElementById("#CustomerID").val(),'*') /*window.top.postMessage(getElementById("#CustomerID").val(),'*')
window.top.postMessage(getElementById("#UserName").val(), '*') window.top.postMessage(getElementById("#UserName").val(), '*')
window.top.postMessage(getElementById("#Password").val(), '*')*/ window.top.postMessage(getElementById("#Password").val(), '*')*/
parent.location.replace('../Customers/Welcome.aspx'); //parent.location.replace('../Customers/Welcome.aspx');
//top.location.replace('../Customers/Welcome.aspx'); top.location.replace('../Customers/Welcome.aspx');
} }
} }
function bust2() { function bust2() {
if (top.location != self.location) { if (top.location != self) {
var zipphone2_1 = getElementById("#CustomerID").val(); var zipphone2_1 = getElementById("#CustomerID").val();
var zipphone2_2 = getElementById("#UserName").val(); var zipphone2_2 = getElementById("#UserName").val();
var zipphone2_3 = getElementById("#Password").val(); var zipphone2_3 = getElementById("#Password").val();
alert("send:" + zipphone2_1) alert("send:" + zipphone2_1)
alert("send:" + zipphone2_2) alert("send:" + zipphone2_2)
alert("send:" + zipphone2_3) alert("send:" + zipphone2_3)
//parent.location.replace('../Customers/Welcome.aspx');
top.location.replace('../Customers/Welcome.aspx');
} }
} }
</script> </script>