'use strict';if(typeof dotclear.post_remember_str==='undefined'&&typeof dotclear.getData!=='undefined'){dotclear.post_remember_str=dotclear.getData('dc_post_remember_str').post_remember_str;} window.addEventListener('load',()=>{const bloc=new DOMParser().parseFromString(`

`,'text/html').body.firstChild;let point=document.querySelector('#comment-form input[type=submit][name=preview]');if(!point){point=document.querySelector('#comment-form button[type=submit][name=preview]');} if(point){point=point.parentNode;point.parentNode.insertBefore(bloc,point);}else{return;} const remember_me_name='comment_info';const info=readRememberInfo();if(info!==false){document.getElementById('c_name').setAttribute('value',info.name);document.getElementById('c_mail').setAttribute('value',info.mail);document.getElementById('c_site').setAttribute('value',info.site);document.getElementById('c_remember').setAttribute('checked','checked');} document.getElementById('c_remember').onclick=(e)=>{if(e.target.checked){setRememberInfo();}else{dropRememberInfo();}};const copeWithModifiedInfo=()=>{if(document.getElementById('c_remember').checked){setRememberInfo();}};document.getElementById('c_name').onchange=copeWithModifiedInfo;document.getElementById('c_mail').onchange=copeWithModifiedInfo;document.getElementById('c_site').onchange=copeWithModifiedInfo;function setRememberInfo(){localStorage.setItem(remember_me_name,JSON.stringify({name:document.getElementById('c_name').value,mail:document.getElementById('c_mail').value,site:document.getElementById('c_site').value,}));} function dropRememberInfo(){localStorage.removeItem(remember_me_name);} function readRememberInfo(){const info=localStorage.getItem(remember_me_name);if(info===null){return false;} const result=JSON.parse(info);if(Object.keys(result).length!=3){dropRememberInfo();return false;} return result;}});