Ignore:
Timestamp:
04/28/20 12:57:03 (5 years ago)
Author:
bart
Message:

Release 1.4.0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/main/webapp/utilstable.xhtml

    r9 r12  
    7878        Called when the page opens.
    7979        */
    80         function connect() {
     80        function init() {
    8181               
    8282                var id=document.location.search;
     
    124124                }
    125125               
    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);
    127132        }
    128133       
     
    369374
    370375
    371 
    372 
    373 </script>
    374 
    375 
    376 
    377 
    378 
    379 <script type="application/javascript">
    380        
    381        
    382376       
    383377        <![CDATA[
     
    393387                            noscripts[i].parentNode.removeChild(noscripts[i]);
    394388                        }
    395                 connect();
     389                init();
    396390
    397391         }, false);
     
    399393
    400394
    401 
    402 
    403 
    404 
    405 
    406 
    407 
    408 
    409 
    410 
    411 
    412 
    413 
    414 
    415 
    416 
    417395</script>
    418396
Note: See TracChangeset for help on using the changeset viewer.