Skip to content

Commit

Permalink
JENKINS-45329 device/action selection on MC wizard could not be saved…
Browse files Browse the repository at this point in the history
… in IE browser (#223)

* Defect: JENKINS-44813 check the job id exists or not before using it since multiple mc server configuration

* Defect: JENKINS-45329 workaround by open the window with jenkins page then redirect to the mc page
  • Loading branch information
janezhango authored and YafimK committed Jul 12, 2017
1 parent 37abde5 commit 85a59c0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/webapp/configure.js
Expand Up @@ -26,7 +26,9 @@ function load(a,path){
buttonStatus = false;
return;
}
var openedWindow = window.open(baseUrl+path+jobResponse+'&displayUFTMode=true','test parameters','height=820','width=1130');
var openedWindow = window.open('/','test parameters','height=820,width=1130');
openedWindow.location.href = 'about:blank';
openedWindow.location.href = baseUrl+path+jobResponse+'&displayUFTMode=true';
var messageCallBack = function (event) {
if (event && event.data && event.data=="mcCloseWizard") {
a.populateAppAndDevice(baseUrl,mcUserName,mcPassword,proxyAddress, proxyUserName, proxyPassword,jobResponse, function (app) {
Expand Down

0 comments on commit 85a59c0

Please sign in to comment.