accessibility-settings.html
1 year ago
color-picker.html
1 year ago
color-picker.scss
1 year ago
css-settings.html
1 year ago
display-settings.html
1 year ago
display-settings.scss
1 year ago
filter-settings.html
1 year ago
font-awesome-button-settings.html
1 year ago
font-awesome-button-settings.scss
1 year ago
help-icon.html
1 year ago
help-icon.scss
1 year ago
image-button-settings.html
1 year ago
image-button-settings.scss
1 year ago
index.php
1 year ago
location-settings.html
1 year ago
posts-filter-selection.html
1 year ago
posts-filter-selection.scss
1 year ago
text-button-settings.html
1 year ago
posts-filter-selection.html
10 lines
| 1 | <div> |
| 2 | <input class="post-id-list" id="post-id-list" type="text" :value="modelValue" @input="$emit('update:modelValue', $event.target.value)" /> |
| 3 | <div class="pages-selection" id="pages-selection"> |
| 4 | <div class="page-div" v-for="value in postsList"> |
| 5 | <label> |
| 6 | <input type="checkbox" :value="value.key" :id="'chk_pages_selection_' + value.key" v-model="selectedPosts" />{{ value.display }} |
| 7 | </label> |
| 8 | </div> |
| 9 | </div> |
| 10 | </div> |