| author | ymh <ymh.work@gmail.com> |
| Wed, 18 Jan 2017 16:50:59 +0100 | |
| changeset 297 | ae36a174a3e5 |
| parent 212 | 1c7cce196665 |
| permissions | -rw-r--r-- |
<script> export default { data: { }, mounted() { $(".collection-description-complete").hide(); }, methods: { showCompleteDescription: function(){ $(".collection-description").hide() $(".collection-description-complete").show() }, hideCompleteDescription: function(name){ $(".collection-description-complete").hide() $(".collection-description").show() } }, } </script>