LSP: shop clarification + removed double / at conversion input file

This commit is contained in:
Cat 2013-09-10 10:36:13 +02:00
parent 6d33e7be56
commit af34b28544
2 changed files with 6 additions and 3 deletions

View file

@ -743,7 +743,7 @@ function buildLogsTable(){
for (var i in c) {
if (c[i]) {
$('#conv-edit-input').append(
$('<option>').val($('#conv-edit-dir').val()+'/'+i).text(i)
$('<option>').val($('#conv-edit-dir').val()+i).text(i)
);
j++;
}

View file

@ -61,7 +61,8 @@
$(this).attr('class', 'selected');
// show correct tab
showTab($(this).text());
var t = $(this).text() || $(this).children('a').text();
showTab(t);
});
});
@ -1514,7 +1515,9 @@
});
break;
case 'Mist Shop':
$('#page').append($('<p>').addClass('nocapitals').text('The Mist Shop has been opened in a new tab.'));
break;
case 'disconnect':
showTab('login');
setHeaderState('disconnected');