LSP: shop clarification + removed double / at conversion input file
This commit is contained in:
parent
6d33e7be56
commit
af34b28544
2 changed files with 6 additions and 3 deletions
|
@ -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++;
|
||||
}
|
||||
|
|
|
@ -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');
|
||||
|
|
Loading…
Add table
Reference in a new issue