Changes in src/main/webapp/newtournament.xhtml [3:1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/webapp/newtournament.xhtml
r3 r1 51 51 onchange="connectDomain()"> </input> 52 52 <br /> 53 Domain: <select id="domainselection" onc hange="selectDomain()">53 Domain: <select id="domainselection" onclick="selectDomain()"> 54 54 <!-- <option>Waiting for profiles server</option> --> 55 55 </select> … … 374 374 } 375 375 376 var reuseParties = document.getElementById("reuseparties").checked;376 var reuseParties = "on"== document.getElementById("reuseparties").value; 377 377 var sessionSettings = {"SAOPSettings":{"participants":[],"deadline":deadline}}; 378 378 return JSON.stringify({"AllPermutationsSettings":{"parties":parties,"profiles":profiles,"reuseParties":reuseParties,"partiesPerSession":2,"sessionsettings":sessionSettings}}); … … 383 383 */ 384 384 function init() { 385 document.getElementById("partiesserverurl").value =window.location.hostname+":8080/partiesserver-1.0.0"386 document.getElementById("profilesserverurl").value =window.location.hostname+":8080/profilesserver-1.0.0"387 388 389 385 connectDomain(); 390 386 connectParties();
Note:
See TracChangeset
for help on using the changeset viewer.