File tree Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Expand file tree Collapse file tree 2 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 2121 v-bind:questions =" questions"
2222 v-bind:language =" language"
2323 v-bind:standalone =" true"
24- v-bind:footer-nav =" false"
24+ v-bind:navigation =" false"
2525 >
2626 <!-- Custom content for the Complete/Submit screen slots in the FlowForm component -->
2727 <!-- We've overriden the default "complete" slot content -->
Original file line number Diff line number Diff line change 6060 </div >
6161 {{ language.percentCompleted.replace(':percent', percentCompleted) }}
6262 </div >
63- <div v-if =" footerNav " class =" f-nav" >
63+ <div v-if =" navigation " class =" f-nav" >
6464 <a
6565 class =" f-prev"
6666 href =" #"
147147 type: Boolean ,
148148 default: true
149149 },
150- footerNav : {
150+ navigation : {
151151 type: Boolean ,
152152 default: true
153153 }
325325 }
326326
327327 if (e .shiftKey ) {
328- if (! this .footerNav ) {
329- return
330- }
331-
332328 e .stopPropagation ()
333329 e .preventDefault ()
334330
335- this .goToPreviousQuestion ()
331+ if (this .navigation ) {
332+ this .goToPreviousQuestion ()
333+ }
336334 } else {
337335 e .preventDefault ()
338336
You can’t perform that action at this time.
0 commit comments