20 lines
471 B
JavaScript
20 lines
471 B
JavaScript
|
function checkHex(str) {
|
||
|
regexp = /^[0-9a-fA-F]+$/
|
||
|
if (regexp.test(str)){
|
||
|
return true
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
document.getElementById('openSite').onclick = function(){
|
||
|
var hash = document.getElementById('siteViewer').value
|
||
|
if (hash.length == 0){ return }
|
||
|
if (checkHex(hash) && hash.length >= 50){
|
||
|
window.location.href = '/site/' + hash
|
||
|
}
|
||
|
else{
|
||
|
PNotify.notice({
|
||
|
text: 'Invalid site hash'
|
||
|
})
|
||
|
}
|
||
|
}
|