[webpack.login.data] now works with localhost|xdrm.io (used processed 'api.target')

This commit is contained in:
xdrm-brackets 2018-03-03 16:25:39 +01:00
parent b1c6ab5a0d
commit fa83d62d72
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
gstore.add('popup_click', function(){
/* (1) Open popup */
window.pop = window.open('https://sso.univ-pau.fr/cas/login?service=http://ptut.com:8080/api/v/1.0/cas', '_blank', 'location=no,height=1024,width=1024,scrollbars=yes,status=no');
window.pop = window.open('https://sso.univ-pau.fr/cas/login?service='+window.api.target+'cas', '_blank', 'location=no,height=1024,width=1024,scrollbars=yes,status=no');
/* (2) If popup closed -> abort */
window.popint = setInterval(function(){ window.pop.closed && window.cas_callback(null); }, 500);