Compare commits

..

No commits in common. "9cdb3b54f7e8f1d8e02b570a70a37cba3a287450" and "cdd1fc31b7430ee81e45d9ccc317f707fdf4a08f" have entirely different histories.

2 changed files with 1747 additions and 1 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
draggable(tag='div' :list='journey_data.main' class='list-group bg-dark' handle='.handle')
div.list-group-item.handle(v-for='(element, idx) in journey_data.main' :key='idx' @click='sel_section(idx)' :class='(journey_step_data.section==idx)?"bg-primary":"bg-white"')
div.list-group-item.handle(v-for='(element, idx) in journey_data.main' :key='idx' @click='sel_section(idx)' :class='{ bg-primary: (journey_step_data.section==idx) }')
div.text {{element.title}}
i.fa.fa-times.close.fright(style='top:2px;right:2px;position:absolute;' @click='rm_section(idx)')