Skip to content

Commit

Permalink
Fixing WebMentions target
Browse files Browse the repository at this point in the history
  • Loading branch information
dumaurier committed Jan 30, 2019
1 parent bdae580 commit cc18ffd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion _includes/components/mentions.html
Expand Up @@ -14,7 +14,7 @@ <h4>Send a response</h4>
<fieldset class="form-group">
<label for="url-mention">Add your response:</label>
<input class="form-control" id="url-mention" type="url" name="source" required placeholder="https://yourdomain/response" />
<input type="hidden" name="target" value="{{ site.data.settings.domainname }}{{ page.url }}" />
<input type="hidden" name="target" value="https://{{ site.data.settings.domainname }}{{ page.url }}" />

</fieldset>
<button class="btn btn-primary">Send webmention</button>
Expand Down
4 changes: 2 additions & 2 deletions _site/sw.js
@@ -1,5 +1,5 @@
const cacheName = 'sw-1548819531';
const dataCacheName = 'sw-1548819531';
const cacheName = 'sw-1548820585';
const dataCacheName = 'sw-1548820585';
const RUNTIME = 'runtime';

var getPageURL = location;
Expand Down

0 comments on commit cc18ffd

Please sign in to comment.