From 851025f2f32e6df06d34464239aa13b21ef019c6 Mon Sep 17 00:00:00 2001 From: Tim Head Date: Sat, 25 May 2019 10:32:45 +0200 Subject: [PATCH] Tweak loading messages --- binderhub/static/js/index.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/binderhub/static/js/index.js b/binderhub/static/js/index.js index f38b377a6..246e9664e 100644 --- a/binderhub/static/js/index.js +++ b/binderhub/static/js/index.js @@ -130,10 +130,10 @@ function build(providerSpec, log, path, pathType) { // Update the text of the loading page if it exists if ($('div#loader-text').length > 0) { - $('div#loader-text p').text("Loading repository (can take 30s or more to load): " + spec); + $('div#loader-text p').text("Starting repository: " + spec); window.setTimeout(function() { - $('div#loader-text p').html("Repository " + spec + " is taking longer than usual to load, hang tight!") - }, 120000); + $('div#loader-text p').html("Repository " + spec + " is taking longer than usual to start, hang tight!") + }, 17000); } $('#build-progress .progress-bar').addClass('hidden');