You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@community.apache.org by hu...@apache.org on 2018/08/29 19:02:54 UTC

svn commit: r1839597 - /comdev/project-logos/site/js/logofinder.js

Author: humbedooh
Date: Wed Aug 29 19:02:54 2018
New Revision: 1839597

URL: http://svn.apache.org/viewvc?rev=1839597&view=rev
Log:
fix max width for non-default defaults

Modified:
    comdev/project-logos/site/js/logofinder.js

Modified: comdev/project-logos/site/js/logofinder.js
URL: http://svn.apache.org/viewvc/comdev/project-logos/site/js/logofinder.js?rev=1839597&r1=1839596&r2=1839597&view=diff
==============================================================================
--- comdev/project-logos/site/js/logofinder.js (original)
+++ comdev/project-logos/site/js/logofinder.js Wed Aug 29 19:02:54 2018
@@ -37,7 +37,7 @@ function make_div(key, project) {
     if (project.has_default) {
         
     } else {
-        img = new HTML('img', {src: 'res/%s'.format(project.images[0].filename), style: {maxWidth: '260px', maxHeight: '160px'}});
+        img = new HTML('img', {src: 'res/%s'.format(project.images[0].filename), style: {maxWidth: '320px', maxHeight: '160px'}});
     }
     div.inject(title);
     idiv.inject(img);