This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
$('#sw-form-capture-submit-btn').unbind('click'); | |
$('#sw-form-capture-submit-btn').click(function(event){ | |
disableButtonClick(); | |
sendToAWS(); | |
}); | |
function sendToAWS() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function () { | |
let recordId = getUrlParam('recordId'); | |
var exitCondition = setInterval(function() { | |
$('a').each(function() { | |
if($(this).attr('href') && $(this).attr('href').endsWith('{URL_PARAM:recordId}')) { | |
const url = $(this).attr('href').replace('{URL_PARAM:recordId}', recordId); | |
$(this).attr('href', url); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
const pageId = 'c677b3ed-03d1-462a-a1b4-c78bd71bb8e3'; | |
const applicationId = '8d4648c7-85ec-4901-bb16-a1d99e6f7b9e'; | |
const baseId = 'appbQWhGxkZUzMwzP'; | |
const candidatesTableName = 'Candidature(s)'; | |
const votesTableName = 'Votes'; | |
const votesUrl = 'https://' + window.location.hostname + '/v1/integrations/airtable/' + applicationId + '/' + baseId + '/' + votesTableName + '/records/new'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
setInterval(function() { | |
const telNumebers = $('.js-list-item a:contains("Url label")'); | |
telNumebers.each(function(){ | |
const number = $(this).attr('href'); | |
if(number == 'tel:') { | |
$(this).css('display', 'none'); | |
} else { | |
$(this).html(number.replace('tel:', '')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="pricing-table"> | |
<div class="pricing-header d-flex flex-wrap align-items-center"> | |
<div class="column--first table-name"> | |
<div class="pricing-title sw-pricing-title--big sw-font-family-default">Features</div> | |
</div> | |
<div class="sw-pricing-column sw-font-family-default"> | |
<div class="pricing-title">Free</div> | |
</div> | |
<div class="sw-pricing-column sw-font-family-default"> | |
<div class="pricing-title">Starter</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
const jwtToken = getCookie('jwtToken'); | |
setCookie('jwtToken', jwtToken, 30); | |
function setCookie(name, value, minutes) { | |
var date = new Date(); | |
date.setTime(date.getTime() + (minutes * 60 * 1000)); | |
var expires = "expires="+ date.toUTCString(); | |
document.cookie = name + "=" + value + ";" + expires + ";path=/;" + "SameSite=None; Secure"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
document.addEventListener("DOMContentLoaded", function() { | |
const recordId = getUrlParam('recordId'); | |
console.log(recordId); | |
function getUrlParam(name) { | |
const url = new URL(window.location.href); | |
let param; | |
for (var key of url.searchParams.keys()) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script> | |
/** this needs to be changed if block ids get changed score fields get changed **/ | |
const blockMapping = { | |
'list-details7': { | |
'field1' : 'F.O.R. Score', | |
'field2' : 'Status FOR' | |
}, | |
'list-details6': { | |
'field1' : 'High Score 4', | |
'field2' : 'Test 4 Status' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<style> | |
#pricing9584 .sw-pricing-column{ max-width: 18%; flex: 0 0 18%; text-align: center; padding: 16px 15px; box-sizing: border-box; } #pricing9584 .pricing-table .features:not(.buttons-row):hover{ background-color: #f3f4f8; } #pricing9584 .pricing-table .features{ align-items: baseline; } #pricing9584 .pricing-table { border-top: 1px solid #f3f4f8; padding: 30px 0; } #pricing9584 .pricing-header { margin-bottom: .83333333vw; } #pricing9584 .table-name{ font-weight: 500; } #pricing9584 .column--first{ max-width: 28%; flex: 0 0 28%; text-align: left; color: #1C2B41; font-size: 18px; padding: 10px 12px; } #pricing9584 .pricing-tier{ font-size: 18px; } #pricing9584 .pricing-title{ color: #1C2B41; position: relative; font-size: 1.16666667vw; line-height: 1.66666667vw; font-weight: 500; } #pricing9584 .sw-pricing-title--big{ font-size: 1.5vw; line-heig |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tables": [ | |
{ | |
"id": "tbl2g31JZOaP5v35E", | |
"name": "Jobs", | |
"primaryFieldId": "fldKWJFMfX27nTZAw", | |
"fields": [ | |
{ | |
"type": "singleLineText", | |
"id": "fldKWJFMfX27nTZAw", |
NewerOlder