bugfix custom.html

pull/2462/head
Alain Saas 2023-01-06 12:01:52 -05:00 committed by GitHub
parent ccd90185d0
commit 5e9ea4b1aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -41,6 +41,8 @@
for (var i=0; i<2; i++) { for (var i=0; i<2; i++) {
var name=document.getElementById("name_"+i).value; var name=document.getElementById("name_"+i).value;
var offset=document.getElementById("offset_"+i).value; var offset=document.getElementById("offset_"+i).value;
app_offsets.push([name,offset]);
storage_offsets.push([checked,name,offset]);
} }
console.log(storage_offsets); console.log(storage_offsets);
console.log(app_offsets); console.log(app_offsets);
@ -53,4 +55,4 @@
}); });
</script> </script>
</body> </body>
</html> </html>