reset version number when not specified - again bug oc-1433

remotes/origin/stable45
Alessandro Cosentino 13 years ago
parent da4057ecfd
commit 226af11f33
  1. 6
      settings/js/apps.js

@ -20,7 +20,11 @@ $(document).ready(function(){
$('#rightcontent p.license').show();
$('#rightcontent span.name').text(app.name);
$('#rightcontent small.externalapp').text(app.internallabel);
$('#rightcontent span.version').text(app.version);
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…
Cancel
Save