|
|
|
@ -83,7 +83,7 @@ |
|
|
|
|
*/ |
|
|
|
|
updateStatusBar = function (e) { |
|
|
|
|
var cursor_position = editor.getCursorPosition(); |
|
|
|
|
$('.statusbar .position').text('Line: ' + (1 + cursor_position.row) + ', Column: ' + cursor_position.column); |
|
|
|
|
$('.statusbar .position').text('Line: ' + (1 + cursor_position.row) + ', Col: ' + cursor_position.column); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -106,7 +106,7 @@ |
|
|
|
|
|
|
|
|
|
success: function (res, status, jqXHR) { |
|
|
|
|
if (res.memory || res.duration) { |
|
|
|
|
$('.statusbar .runtime-info').text('Mem usage: ' + res.memory + ' MB, Time: ' + res.duration + 'ms'); |
|
|
|
|
$('.statusbar .runtime-info').text('Mem: ' + res.memory + ' MB, Time: ' + res.duration + ' ms'); |
|
|
|
|
} else { |
|
|
|
|
$('.statusbar .runtime-info').text(''); |
|
|
|
|
} |
|
|
|
|