diff --git a/src/vue-poc/app.vue b/src/vue-poc/app.vue index b0207f3..b1e3c94 100644 --- a/src/vue-poc/app.vue +++ b/src/vue-poc/app.vue @@ -154,15 +154,15 @@ {href: '/',text: 'Dashboard', icon: 'home' }, { icon: 'input', - text: 'Actions' , + text: 'Action' , model: false, children: [ - {href: '/eval',text: 'Query',icon: 'play_circle_outline'}, - - {href: '/edit',text: 'Edit',icon: 'mode_edit'}, - {href: '/tabs',text: 'Tabs',icon: 'switch_camera'}, - {href: '/validate',text: 'Validate',icon: 'playlist_add_check'}, - {href: '/transform',text: 'XSLT Transform',icon: 'forward'} + {href: '/action/eval',text: 'Query',icon: 'play_circle_outline'}, + {href: '/action/edit',text: 'Edit',icon: 'mode_edit'}, + {href: '/action/tabs',text: 'Tabs',icon: 'switch_camera'}, + {href: '/action/validate',text: 'Validate',icon: 'playlist_add_check'}, + {href: '/action/transform',text: 'XSLT Transform',icon: 'forward'}, + {href: '/view/svg',text: 'SVG test',icon: 'preview'} ]}, { diff --git a/src/vue-poc/components/qd-autoheight.vue b/src/vue-poc/components/qd-autoheight.vue index 48d7c5d..6a65330 100644 --- a/src/vue-poc/components/qd-autoheight.vue +++ b/src/vue-poc/components/qd-autoheight.vue @@ -19,7 +19,7 @@ var el=this.$refs["auto"]; var e=el; // console.log("top",e.offsetTop,e.getBoundingClientRect().top,window.innerHeight); - var h=window.innerHeight - e.getBoundingClientRect().top -10; + var h=window.innerHeight - e.getBoundingClientRect().top -20; h=Math.max(1,h) ; // console.log("h",h) e.style.height=h +"px"; diff --git a/src/vue-poc/components/vp-paramform.vue b/src/vue-poc/components/vp-paramform.vue index 9f7aeda..4ca39fe 100644 --- a/src/vue-poc/components/vp-paramform.vue +++ b/src/vue-poc/components/vp-paramform.vue @@ -1,19 +1,35 @@