From: Frank Karlitschek Date: Sun, 3 Jun 2012 21:48:59 +0000 (+0200) Subject: link to apps.owncloud.com X-Git-Tag: v4.5.0beta1~74^2~425^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f3c1d1eded96e948b2ddc608de48778b62232231;p=nextcloud-server.git link to apps.owncloud.com thanks to guillaume for the patch --- diff --git a/settings/js/apps.js b/settings/js/apps.js index f6e08b608bd..5ac7d80b949 100644 --- a/settings/js/apps.js +++ b/settings/js/apps.js @@ -17,7 +17,7 @@ $(document).ready(function(){ }); $('#leftcontent li').click(function(){ var app=$(this).data('app'); - $('#rightcontent p').show(); + $('#rightcontent p.license').show(); $('#rightcontent span.name').text(app.name); $('#rightcontent small.externalapp').text(app.internallabel); $('#rightcontent span.version').text(app.version); @@ -31,6 +31,10 @@ $(document).ready(function(){ $('#rightcontent input.enable').val((app.active)?t('settings','Disable'):t('settings','Enable')); $('#rightcontent input.enable').data('appid',app.id); $('#rightcontent input.enable').data('active',app.active); + if ( app.internal == false ) { + $('#rightcontent p.appslink').show(); + $('#rightcontent a').attr('href','http://apps.owncloud.com/content/show.php?content='+app.id); + } return false; }); $('#rightcontent input.enable').click(function(){ diff --git a/settings/templates/apps.php b/settings/templates/apps.php index 7642ab7fb89..c620f796e06 100644 --- a/settings/templates/apps.php +++ b/settings/templates/apps.php @@ -22,6 +22,7 @@

t('Select an App');?>

- + +