Browse Source

Update Profile.vue embed modal

Daniel Supernault 5 years ago
parent
commit
369cfd8c76
1 changed files with 3 additions and 2 deletions
  1. 3 2
      resources/assets/js/components/Profile.vue

+ 3 - 2
resources/assets/js/components/Profile.vue

@@ -518,7 +518,7 @@
 	size="md"
 	size="md"
 	body-class="p-2 rounded">
 	body-class="p-2 rounded">
 	<div>
 	<div>
-		<textarea class="form-control disabled" rows="1" style="border: 1px solid #efefef; font-size: 14px; line-height: 12px; height: 37px; margin: 0 0 7px; resize: none; white-space: nowrap;" v-model="ctxEmbedPayload"></textarea>
+		<textarea class="form-control disabled text-monospace" rows="6" style="overflow-y:hidden;border: 1px solid #efefef; font-size: 12px; line-height: 18px; margin: 0 0 7px;resize:none;" v-model="ctxEmbedPayload" disabled=""></textarea>
 		<hr>
 		<hr>
 		<button :class="copiedEmbed ? 'btn btn-primary btn-block btn-sm py-1 font-weight-bold disabed': 'btn btn-primary btn-block btn-sm py-1 font-weight-bold'" @click="ctxCopyEmbed" :disabled="copiedEmbed">{{copiedEmbed ? 'Embed Code Copied!' : 'Copy Embed Code'}}</button>
 		<button :class="copiedEmbed ? 'btn btn-primary btn-block btn-sm py-1 font-weight-bold disabed': 'btn btn-primary btn-block btn-sm py-1 font-weight-bold'" @click="ctxCopyEmbed" :disabled="copiedEmbed">{{copiedEmbed ? 'Embed Code Copied!' : 'Copy Embed Code'}}</button>
 		<p class="mb-0 px-2 small text-muted">By using this embed, you agree to our <a href="/site/terms">Terms of Use</a></p>
 		<p class="mb-0 px-2 small text-muted">By using this embed, you agree to our <a href="/site/terms">Terms of Use</a></p>
@@ -1215,7 +1215,8 @@
 			},
 			},
 
 
 			showEmbedProfileModal() {
 			showEmbedProfileModal() {
-				this.ctxEmbedPayload = window.App.util.embed.profile(this.profile.url)
+				this.ctxEmbedPayload = window.App.util.embed.profile(this.profile.url);
+				this.$refs.visitorContextMenu.hide();
 				this.$refs.embedModal.show();
 				this.$refs.embedModal.show();
 			},
 			},