reset version number when not specified - again bug oc-1433
This commit is contained in:
parent
da4057ecfd
commit
226af11f33
|
@ -20,7 +20,11 @@ $(document).ready(function(){
|
|||
$('#rightcontent p.license').show();
|
||||
$('#rightcontent span.name').text(app.name);
|
||||
$('#rightcontent small.externalapp').text(app.internallabel);
|
||||
if (app.version) {
|
||||
$('#rightcontent span.version').text(app.version);
|
||||
} else {
|
||||
$('#rightcontent span.version').text('');
|
||||
}
|
||||
$('#rightcontent p.description').text(app.description);
|
||||
$('#rightcontent img.preview').attr('src',app.preview);
|
||||
$('#rightcontent small.externalapp').attr('style','visibility:visible');
|
||||
|
|
Loading…
Reference in New Issue