Skip to content
Snippets Groups Projects
Commit c1b157e5 authored by Adam Procter's avatar Adam Procter
Browse files

fixed final input field

parent 06912bd6
No related branches found
No related tags found
No related merge requests found
...@@ -45,13 +45,13 @@ ...@@ -45,13 +45,13 @@
autocorrect="off" autocorrect="off"
autocapitalize="none" autocapitalize="none"
ref="objectname" ref="objectname"
v-on:keyup.enter="setClient()" v-on:keyup.enter="setClient(), setFocusTwo()"
/> />
<BaseButton buttonClass="onboard" @click="setClient(), setFocusTwo()">+</BaseButton> <BaseButton buttonClass="onboard" @click="setClient(), setFocusTwo()">+</BaseButton>
</form> </form>
<form v-show="partc"> <form v-show="partc">
<input type="text" hidden v-on:keyup.enter="letsGo()" ref="objectnametwo" /> <input class="start" type="text" v-on:keyup.enter="letsGo()" ref="objectnametwo" />
<h2>3</h2> <h2>3</h2>
<h3>start</h3> <h3>start</h3>
<BaseButton buttonClass="onboard" @click="letsGo()">+</BaseButton> <BaseButton buttonClass="onboard" @click="letsGo()">+</BaseButton>
...@@ -117,6 +117,11 @@ export default { ...@@ -117,6 +117,11 @@ export default {
</script> </script>
<style lang="css" scoped> <style lang="css" scoped>
.start {
opacity: 0;
filter: alpha(opacity=0);
}
h1, h1,
h2, h2,
h3, h3,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment