diff --git a/vasl_templates/webapp/static/main.js b/vasl_templates/webapp/static/main.js index e3e85b6..3c1ff49 100644 --- a/vasl_templates/webapp/static/main.js +++ b/vasl_templates/webapp/static/main.js @@ -495,6 +495,12 @@ function update_page_load_status( id ) } ).fail( function( xhr, status, errorMsg ) { showErrorMsg( "Can't get the startup messages:
" + escapeHTML(errorMsg) + "
" ) ; } ) ; + // preload the flag images (so that the player droplist renders immediately) + for ( var nat in gTemplatePack.nationalities ) { + $("body").append( $( + "" + ) ) ; + } } }