Browse Source

:zap: Append time of sharing with content

Liyas Thomas 5 years ago
parent
commit
f246df572b
2 changed files with 6 additions and 4 deletions
  1. 2 3
      layouts/default.vue
  2. 4 1
      pages/index.vue

+ 2 - 3
layouts/default.vue

@@ -32,13 +32,12 @@
           Install PWA
         </button>
       </div>
-
       <!-- Bottom section of footer: version/author information -->
       <p class="align-center">
         <span v-if="version.name">
-					<a v-bind:href="'https://github.com/liyasthomas/postwoman/releases/tag/' + version.name">{{version.name }}</a>
+					<a v-bind:href="'https://github.com/liyasthomas/postwoman/releases/tag/' + version.name" target="_blank">{{version.name }}</a>
           <span v-if="version.hash">
-						- <a v-bind:href="'https://github.com/liyasthomas/postwoman/commit/' + version.hash">{{ version.hash }}</a>
+						- <a v-bind:href="'https://github.com/liyasthomas/postwoman/commit/' + version.hash" target="_blank">{{ version.hash }}</a>
 					</span>
           <span v-if="version.variant"> ({{ version.variant }})</span>
           &#x2022; </span>by <a href="https://liyasthomas.web.app" target="_blank">Liyas Thomas 🦄</a>

+ 4 - 1
pages/index.vue

@@ -691,8 +691,11 @@
       },
       copyRequest() {
         if (navigator.share) {
+          let title = document.title;
+          let time = new Date().toLocaleTimeString();
           navigator.share({
-            title: document.title,
+            title: title,
+            text: time,
             url: window.location.href
           }).then(() => {
             // console.log('Thanks for sharing!');