This commit is contained in:
Kyle
2020-03-31 15:42:35 -07:00
parent a75e5d874b
commit 90a5e2fec8
3 changed files with 5 additions and 6 deletions

View File

@@ -22,6 +22,9 @@ function getCookie(cookieName) {
function checkCookies() {
if (getCookie('colorPalette') != undefined) {
loadScript('data/scripts/palettes/' + getCookie('colorPalette') + '.js')
setTimeout(function() {
document.getElementById('inputColorPalette').value = getCookie('colorPalette')
}, 1000)
}
}
checkCookies()
@@ -33,4 +36,4 @@ function loadScript(scriptPath){
if (typeof script != 'undefined') {
document.getElementsByTagName('head')[0].appendChild(script)
}
}
}