content.php
2 weeks ago
index.php
2 weeks ago
modal.php
2 weeks ago
oembed_features.php
2 weeks ago
plugin_info.php
2 weeks ago
modal.php
17 lines
| 1 | <div class="cff-oembed-modal" v-if="openInstaInstaller"> |
| 2 | <div class="cff-modal-content" role="dialog" aria-modal="true" :aria-label="modal.title"> |
| 3 | <button type="button" class="cancel-btn cff-btn" v-html="modal.timesIcon" @click="closeModal" aria-label="<?php echo esc_attr__('Close', 'custom-facebook-feed'); ?>"></button> |
| 4 | <div class="modal-icon"> |
| 5 | <img :src="modal.instaIcon" :alt="modal.title"> |
| 6 | </div> |
| 7 | <h2>{{modal.title}}</h2> |
| 8 | <p>{{modal.description}}</p> |
| 9 | <div class="sb-action-buttons"> |
| 10 | <button type="button" class="cff-btn cff-install-btn" @click="installInstagram()" :class="installerStatus" :disabled="isIntagramActivated"> |
| 11 | <span v-html="installIcon()"></span> |
| 12 | <span v-html="instagramInstallBtnText"></span> |
| 13 | </button> |
| 14 | <button type="button" class="cff-btn" @click="closeModal" v-if="!isIntagramActivated">{{modal.cancel}}</button> |
| 15 | </div> |
| 16 | </div> |
| 17 | </div> |