Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ad0f14f4 authored by Scott Main's avatar Scott Main Committed by Android Git Automerger
Browse files

am 76451706: am bb385125: am 3b90aff0: add fixed size to training icons (and remove whitespaces)

* commit '76451706':
  add fixed size to training icons (and remove whitespaces)
parents 949c4eb0 76451706
Loading
Loading
Loading
Loading
+121 −119
Original line number Diff line number Diff line
@@ -335,12 +335,14 @@ false; // navigate across topic boundaries only in design docs
      $lessons = $(this).closest('li').find('ul li a');

      if ($lessons.length) {
        $imgIcon = $('<img src="'+toRoot+'assets/images/resource-tutorial.png" alt=""/>');
        $imgIcon = $('<img src="'+toRoot+'assets/images/resource-tutorial.png" '
            + ' width="64" height="64" alt=""/>');
        $lessons.each(function(index) {
          $olLessons.append('<li><a href="'+$(this).attr('href')+'">' + $(this).html()+'</a></li>');
        });
      } else {
        $imgIcon = $('<img src="'+toRoot+'assets/images/resource-article.png" alt=""/>');
        $imgIcon = $('<img src="'+toRoot+'assets/images/resource-article.png" '
            + ' width="64" height="64" alt=""/>');
        $pSummary.addClass('article');
      }