Skip to content

Commit

Permalink
Merge pull request #6 from wat-aro/fix-invalid-handler-warning
Browse files Browse the repository at this point in the history
Fix Invalid handler for event "load"
  • Loading branch information
DCzajkowski authored Oct 12, 2018
2 parents a5cfb3d + 7d451ef commit 086f6a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Components/Lightbox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</div>
<div class="lightbox__image" @click.stop="">
<slot name="loader" v-if="$slots.loader"></slot>
<img :src="images[index]" @load="loaded" v-if="displayImage">
<img :src="images[index]" v-if="displayImage">
</div>
<div
class="lightbox__arrow lightbox__arrow--right"
Expand Down

0 comments on commit 086f6a3

Please sign in to comment.