src_js/iconolab-bundle/src/components/collectionhome/descriptionviewer/DescriptionViewer.vue
changeset 212 1c7cce196665
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src_js/iconolab-bundle/src/components/collectionhome/descriptionviewer/DescriptionViewer.vue	Thu Oct 06 15:07:50 2016 +0200
@@ -0,0 +1,20 @@
+<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>
\ No newline at end of file