Prevent undo'ing when loading
This commit is contained in:
parent
3442541741
commit
cc8e2bbffb
@ -57,7 +57,7 @@ document.addEventListener("DOMContentLoaded",()=>{
|
|||||||
function Undo() {
|
function Undo() {
|
||||||
//Execute the reverse.
|
//Execute the reverse.
|
||||||
var state = pixelStates[currentPixelState];
|
var state = pixelStates[currentPixelState];
|
||||||
console.log("Undo "+JSON.stringify(state))
|
//console.log("Undo "+JSON.stringify(state))
|
||||||
switch (state["STEPTYPE"]) {
|
switch (state["STEPTYPE"]) {
|
||||||
case "ADD":{
|
case "ADD":{
|
||||||
//Take each pixel and color it its previous color.
|
//Take each pixel and color it its previous color.
|
||||||
@ -85,7 +85,7 @@ document.addEventListener("DOMContentLoaded",()=>{
|
|||||||
function Redo() {
|
function Redo() {
|
||||||
//Execute the re-reverse.
|
//Execute the re-reverse.
|
||||||
var state = pixelStates[currentPixelState];
|
var state = pixelStates[currentPixelState];
|
||||||
console.log("Redo "+JSON.stringify(state))
|
//console.log("Redo "+JSON.stringify(state))
|
||||||
switch (state["STEPTYPE"]) {
|
switch (state["STEPTYPE"]) {
|
||||||
case "ADD":{
|
case "ADD":{
|
||||||
//Take each pixel and color it its previous color.
|
//Take each pixel and color it its previous color.
|
||||||
@ -395,6 +395,11 @@ document.addEventListener("DOMContentLoaded",()=>{
|
|||||||
var consoleText = document.getElementsByClassName("console")[0];
|
var consoleText = document.getElementsByClassName("console")[0];
|
||||||
consoleText.remove();
|
consoleText.remove();
|
||||||
},2000)
|
},2000)
|
||||||
|
|
||||||
|
undoButton.disabled=true;
|
||||||
|
redoButton.disabled=true;
|
||||||
|
pixelStates = []
|
||||||
|
currentPixelState = -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
var SaveData = ()=>{
|
var SaveData = ()=>{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user