Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fgrcon committed Jun 16, 2017
1 parent 75dfea5 commit 62df744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mockup/patterns/structure/templates/tablerow.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<% } %>
</div>
<% if(attributes["getIcon"] && thumb_scale) { %>
<img class="image-<%- thumb_scale %> pull-right" src="<%- getURL %>/@@images/image/<%- thumb_scale %>">
<img class="thumb-<%- thumb_scale %> pull-right" src="<%- getURL %>/@@images/image/<%- thumb_scale %>">
<% } %>
</td>

Expand Down
2 changes: 1 addition & 1 deletion mockup/tests/pattern-structure-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,7 @@ define([
var el = row.render().el;

expect($('.title img', el).length).to.equal(1);
expect($('.title img', el).attr('class')).to.have.string('image-tile');
expect($('.title img', el).attr('class')).to.have.string('thumb-tile');
});

it('should display no icon for contents without images', function() {
Expand Down

0 comments on commit 62df744

Please sign in to comment.