Skip to content

Commit

Permalink
Prevent 404 on src on Firefox (#1315)
Browse files Browse the repository at this point in the history
  • Loading branch information
stephanwlee authored Jul 27, 2018
1 parent 7346188 commit 5f952f5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@

<dom-module id="tf-beholder-video">
<template>

<div id="container">
<img id="video" src="[[_imageURL]]">
<img id="video" src$="[[_imageURL]]">
</div>

<style>
img {
image-rendering: pixelated;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@
class="value-image"
height="250px"
width="250px"
src="[[_dataImageSrc]]"></img>
src$="[[_dataImageSrc]]"></img>
</template>
</td>
</tr>
Expand Down

0 comments on commit 5f952f5

Please sign in to comment.