Skip to content

Commit

Permalink
deploy: ab9faf9
Browse files Browse the repository at this point in the history
  • Loading branch information
AnalogJ committed Dec 13, 2023
1 parent 422c494 commit f922791
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion feed.xml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.2">Jekyll</generator><link href="https://www.fastenhealth.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://www.fastenhealth.com/" rel="alternate" type="text/html" /><updated>2023-12-13T04:19:34+00:00</updated><id>https://www.fastenhealth.com/feed.xml</id><title type="html">Fasten Health</title><subtitle>Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.</subtitle></feed>
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.3.2">Jekyll</generator><link href="https://www.fastenhealth.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://www.fastenhealth.com/" rel="alternate" type="text/html" /><updated>2023-12-13T04:32:33+00:00</updated><id>https://www.fastenhealth.com/feed.xml</id><title type="html">Fasten Health</title><subtitle>Write an awesome description for your new site here. You can edit this line in _config.yml. It will appear in your document head meta (for Google search results) and in your feed.xml site description.</subtitle></feed>
6 changes: 3 additions & 3 deletions store/success.html
Original file line number Diff line number Diff line change
Expand Up @@ -180,13 +180,13 @@ <h2 class="mb-2 text-2xl font-bold tracking-tight text-gray-900 dark:text-white"

const a = document.createElement('a');
a.style.display = 'none';
a.href = resp.data.download_link;
a.download = resp.data.filename;
a.href = resp?.data?.download_link;
a.download = resp?.data?.filename;
document.body.appendChild(a);
a.click();

},
error: function(resp) { alert('Failed!' + resp.error); },
error: function(resp) { alert('Failed! ' + resp?.responseJSON?.error); },
});
}

Expand Down

0 comments on commit f922791

Please sign in to comment.