correct tab shortcuts (following the removal of the introduction tab)

This commit is contained in:
Ralf Teusner
2015-09-25 11:56:04 +02:00
parent 10da12f950
commit caf47a9251

View File

@ -59,7 +59,7 @@ $(function() {
if (event.type === 'error' || JSON.parse(event.data).code !== 200) { if (event.type === 'error' || JSON.parse(event.data).code !== 200) {
ajaxError(); ajaxError();
showTab(1); showTab(0);
} }
}; };
@ -262,13 +262,11 @@ $(function() {
var handleKeyPress = function(event) { var handleKeyPress = function(event) {
if (event.which === ALT_1_KEY_CODE) { if (event.which === ALT_1_KEY_CODE) {
showTab(0);
} else if (event.which === ALT_2_KEY_CODE) {
showWorkspaceTab(event); showWorkspaceTab(event);
} else if (event.which === ALT_2_KEY_CODE) {
showTab(1);
} else if (event.which === ALT_3_KEY_CODE) { } else if (event.which === ALT_3_KEY_CODE) {
showTab(2); showTab(2);
} else if (event.which === ALT_4_KEY_CODE) {
showTab(3);
} else if (event.which === ALT_R_KEY_CODE) { } else if (event.which === ALT_R_KEY_CODE) {
$('#run').trigger('click'); $('#run').trigger('click');
} else if (event.which === ALT_S_KEY_CODE) { } else if (event.which === ALT_S_KEY_CODE) {
@ -311,7 +309,7 @@ $(function() {
}, 0).toFixed(2); }, 0).toFixed(2);
$('#score').data('score', score); $('#score').data('score', score);
renderScore(); renderScore();
showTab(3); showTab(2);
}; };
var stderrOutput = ''; var stderrOutput = '';
@ -364,7 +362,7 @@ $(function() {
qa_api.executeCommand('syncOutput', [response]); qa_api.executeCommand('syncOutput', [response]);
} }
showStatus(response[0]); showStatus(response[0]);
showTab(2); showTab(1);
}; };
var hideSpinner = function() { var hideSpinner = function() {
@ -719,7 +717,7 @@ $(function() {
clearOutput(); clearOutput();
$('#hint').fadeOut(); $('#hint').fadeOut();
$('#flowrHint').fadeOut(); $('#flowrHint').fadeOut();
showTab(2); showTab(1);
} }
var printOutput = function(output, colorize, index) { var printOutput = function(output, colorize, index) {
@ -820,7 +818,7 @@ $(function() {
stderr: message stderr: message
}, true, 0); }, true, 0);
sendError(message, response.id); sendError(message, response.id);
showTab(2); showTab(1);
}; };
} }
}); });
@ -943,7 +941,7 @@ $(function() {
var showOutput = function(event) { var showOutput = function(event) {
event.preventDefault(); event.preventDefault();
showTab(2); showTab(1);
$('#output').scrollTo($(this).attr('href')); $('#output').scrollTo($(this).attr('href'));
}; };
@ -1008,7 +1006,7 @@ $(function() {
var showWorkspaceTab = function(event) { var showWorkspaceTab = function(event) {
event.preventDefault(); event.preventDefault();
showTab(1); showTab(0);
}; };
var stopCode = function(event) { var stopCode = function(event) {