src_js/iconolab-bundle/src/components/collectionhome/descriptionviewer/DescriptionViewer.vue
equal
deleted
inserted
replaced
|
1 <script> |
|
2 export default { |
|
3 data: { |
|
4 |
|
5 }, |
|
6 mounted() { |
|
7 $(".collection-description-complete").hide(); |
|
8 }, |
|
9 methods: { |
|
10 showCompleteDescription: function(){ |
|
11 $(".collection-description").hide() |
|
12 $(".collection-description-complete").show() |
|
13 }, |
|
14 hideCompleteDescription: function(name){ |
|
15 $(".collection-description-complete").hide() |
|
16 $(".collection-description").show() |
|
17 } |
|
18 }, |
|
19 } |
|
20 </script> |