From 204ed29442a946e6e8df30aa267bcb07ba7020cb Mon Sep 17 00:00:00 2001 From: Troy McConaghy Date: Tue, 18 Jul 2017 11:37:07 +0200 Subject: [PATCH] Fixed a straggler main.ipb.io --> test.ipdb.io There was another instance of main.ipdb.io hanging around, breaking a link on the /getstarted page. I fixed it. Maybe there should be one central place where that base URL is set? --- _src/_assets/javascripts/page-getstarted.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_src/_assets/javascripts/page-getstarted.js b/_src/_assets/javascripts/page-getstarted.js index d9b3932..087d596 100644 --- a/_src/_assets/javascripts/page-getstarted.js +++ b/_src/_assets/javascripts/page-getstarted.js @@ -123,7 +123,7 @@ window.addEventListener('DOMContentLoaded', function domload(event) { const outputContent = JSON.stringify(response, null, 2) // indented with 2 spaces output.textContent = outputContent - transactionLink.href = 'https://main.ipdb.io/api/v1/transactions/' + response.id + transactionLink.href = 'https://test.ipdb.io/api/v1/transactions/' + response.id postButton.classList.add('disabled') postButton.style.opacity = 0