changeset 3145:d33a5c1522dc

client: removed props from pane mixin since they are not used
author Markus Kottlaender <markus@intevation.de>
date Fri, 03 May 2019 10:31:40 +0200
parents 7d33eff62dc6
children b6cc4838d2c0
files client/src/lib/mixins.js
diffstat 1 files changed, 0 insertions(+), 18 deletions(-) [+]
line wrap: on
line diff
--- a/client/src/lib/mixins.js	Fri May 03 10:30:07 2019 +0200
+++ b/client/src/lib/mixins.js	Fri May 03 10:31:40 2019 +0200
@@ -30,28 +30,10 @@
 };
 
 const pane = {
-  props: {
-    paneCreated: Function,
-    paneMounted: Function,
-    paneUpdated: Function,
-    paneDestroyed: Function
-  },
   computed: {
     paneId() {
       return this.$parent.pane.id;
     }
-  },
-  created() {
-    if (this.paneCreated) this.paneCreated();
-  },
-  mounted() {
-    if (this.paneMounted) this.paneMounted();
-  },
-  updated() {
-    if (this.paneUpdated) this.paneUpdated();
-  },
-  destroyed() {
-    if (this.paneDestroyed) this.paneDestroyed();
   }
 };