Commit 363c38a8 by Waheed Ahmed

Merge pull request #3232 from edx/waheed/stud1283-added-message-when-timeout-on-import

Warning message changed for course import when timeout.
parents 4b25f4e6 09972c79
......@@ -191,7 +191,7 @@ $('#fileupload').fileupload({
window.onbeforeunload = null;
if (xhr.status != 200) {
if (!result.responseText) {
alert(gettext("Your import may have failed. Please check your course and try again if necessary."));
alert(gettext("Your browser has timed out, but the server is still processing your import. Please wait 5 min and verify that the new content has appeared."));
return;
}
var serverMsg = $.parseJSON(result.responseText);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment