Skip to content

Commit

Permalink
FIXED: Visual glitch.
Browse files Browse the repository at this point in the history
  • Loading branch information
ppanopticon committed Sep 23, 2017
1 parent 6e64cc2 commit 98eb378
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/results/gallery/gallery.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<p class="background-prompt" *ngIf="mediaobjects.length == 0 && loading"><md-spinner></md-spinner></p>

<div class="gallery" fxLayout="row" fxLayoutWrap fxLayoutGap="{{tilegap + 'px'}}" fxLayoutAlign="space-between start">
<div *ngFor="let mediaobject of mediaobjects | OrderByScorePipe" fxFlex="{{tilesize + 'px'}}" [style.width]="tilesize + 'px'" [style.height]="tilesize + 'px'" draggable="true" (mouseenter)="focus = mediaobject" (mouseleave)="focus = null" (dragstart)="onTileDrag($event, mediaobject)">
<div class="tile" *ngFor="let mediaobject of mediaobjects | OrderByScorePipe" fxFlex="{{tilesize + 'px'}}" [style.width]="tilesize + 'px'" [style.height]="tilesize + 'px'" draggable="true" (mouseenter)="focus = mediaobject" (mouseleave)="focus = null" (dragstart)="onTileDrag($event, mediaobject)">
<div class="tile-header" fxLayout fxLayoutAlign="space-between start">
<div class="filename">{{mediaobject.name}}</div>
<div class="score">
Expand Down

0 comments on commit 98eb378

Please sign in to comment.