Open saeednazarix opened 2 years ago
sorry, I didn't realize some of my sentences were removed on this topic. I updated sentences in "What is the current behavior?"
Hey :) Thank your for investing some time into this issue, the reason behind fireing the save
event with null
on clear is that you're technically changing the color (e.g. saving something) which in this case is "nothing" e.g. null
. Since this'd be a breaking change and this project is about to get deprecated in a month I'll consider this an improvement and mark it as such.
Hey :) Thank your for investing some time into this issue, the reason behind fireing the
save
event withnull
on clear is that you're technically changing the color (e.g. saving something) which in this case is "nothing" e.g.null
. Since this'd be a breaking change and this project is about to get deprecated in a month I'll consider this an improvement and mark it as such.
Having the same problem please fix this before archiving project.
What is the current behavior?
why click on the clear button would fire save event? It creates unwanted behavior. also related to this: if we use color on save event something like this:
when clicking on the clear button it would throw an error in console.log because after clicking on the clear button it would fire save event and because the color is null it would throw an error in this situation and every code in the clear event gets ignored and won't run.
Please provide the steps to reproduce and create a JSFiddle.
in this example, I added an alert to "save event". after clicking on the clear button, an alert is shown. it is an undesired behavior
Please provide the steps to reproduce and create a JSFiddle.
Click on clear button would throw an error because the clear button is calling save but the color is null now. Meanwhile in this mode, if we have some code on the clear event, they won't run.
What is the expected behavior?
clear button should not fire save event. we may encounter other problems later. also if we use
color.toRGBA()
on save event it should not throw an error after clicking on clear button, also codes on the clear event in this situation should run. temporary fix to this issue is usinginstance._color.toRGBA()
on save event if we want to use the clear button as well. but firing save event is still the main problem.Your environment: