diff --git a/_config.yml b/_config.yml index a71cba7..f2a0a91 100644 --- a/_config.yml +++ b/_config.yml @@ -10,7 +10,7 @@ markdown: kramdown theme: minima permalink: pretty -socket_key: 9c79f14df986a1ec693c +socket_key: 7963df9dd6e363aecc85 gems: - jekyll-feed exclude: diff --git a/_includes/footer.html b/_includes/footer.html index cda3c10..943cd8a 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -60,18 +60,22 @@

About Dino Tutors

{% else %} {% endif %} diff --git a/static/js/socket_dev_init.js b/static/js/socket_dev_init.js index ec9928e..3790dd8 100644 --- a/static/js/socket_dev_init.js +++ b/static/js/socket_dev_init.js @@ -1,11 +1,14 @@ +var socket_api_root = 'https://socket-beta.tutorcruncher.com' socket('9c79f14df986a1ec693c', { mode: 'enquiry', - element: '#socket-enquiry' + element: '#socket-enquiry', + api_root: socket_api_root }); -socket('9c79f14df986a1ec693c'); +socket('9c79f14df986a1ec693c', {api_root: socket_api_root}); socket('9c79f14df986a1ec693c', { mode: 'enquiry-modal', - element: '#socket-enquiry-modal' + element: '#socket-enquiry-modal', + api_root: socket_api_root });