#15 Include the upstream's url next to the project's description on the overview
Merged 7 years ago by pingou. Opened 7 years ago by pingou.

file modified
+7
@@ -341,6 +341,13 @@ 

      dataType: 'jsonp',

      success: function(res) {

        $( "#pkgdescription" ).text(res['description']);

+       if (res['url']){

+           var _p = $('.projectinfo');

+           $('.projectinfo').html(

+             _p.html()

+             + ' (<a target="_blank" rel="noopener noreferrer" href="'

+             + res['url'] + '"a>upstream</a>)')

+       }

      }

    });

  });