Skip to content
This repository has been archived by the owner on Feb 11, 2023. It is now read-only.

Release 2.7.4 #258

Merged
merged 2 commits into from
Jul 9, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions components/DataView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
<script lang="ts">
import Vue from 'vue'
import { convertDatetimeToISO8601Format } from '@/utils/formatDate'
import { EventBus, TOGGLE_EVENT } from '@/utils/card-event-bus'

export default Vue.extend({
props: {
Expand Down Expand Up @@ -189,6 +190,9 @@ export default Vue.extend({
this.showDetails = true
},
methods: {
toggleDetails() {
EventBus.$emit(TOGGLE_EVENT, { dataView: this.$parent })
},
toggleShareMenu(e: Event) {
e.stopPropagation()
this.displayShare = !this.displayShare
Expand Down
1 change: 1 addition & 0 deletions nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ const config: Configuration = {
content: '113749536134548'
}
],
script: [{ src: '//kitchen.juicer.cc/?color=ItzXKbVFUys=', async: true }],
link: [
{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon-precomposed.png' },
Expand Down