Changeset 12 for src/main/webapp/utilstable.xhtml
- Timestamp:
- 04/28/20 12:57:03 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/webapp/utilstable.xhtml
r9 r12 78 78 Called when the page opens. 79 79 */ 80 function connect() {80 function init() { 81 81 82 82 var id=document.location.search; … … 124 124 } 125 125 126 getAllProfiles(json, json['toursettings']['AllPermutationsSettings']['profiles']); 126 // collect all profiles from all profileslists 127 var profiles= []; 128 for (const profilelist of json['toursettings']['AllPermutationsSettings']['profileslists']) { 129 profiles = profiles.concat(profilelist['ProfileList']); 130 } 131 getAllProfiles(json, profiles); 127 132 } 128 133 … … 369 374 370 375 371 372 373 </script>374 375 376 377 378 379 <script type="application/javascript">380 381 382 376 383 377 <![CDATA[ … … 393 387 noscripts[i].parentNode.removeChild(noscripts[i]); 394 388 } 395 connect();389 init(); 396 390 397 391 }, false); … … 399 393 400 394 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 395 </script> 418 396
Note:
See TracChangeset
for help on using the changeset viewer.