We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This happens always if display_* is used.
display_*
There's already a comparison taking place in code:
// Avoid request if no change is made if (this.formType in {"input": 1, "textarea": 1} && value === this.oldValue) {
oldValue is initialized with the html content of the element, here to code extract
oldValue
this.oldValue = this.isPlaceHolder() ? "" : this.element.html();
which in multiple cases will not be equal to the input content. Perhaps it should be filled with original_content?
original_content
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This happens always if
display_*
is used.There's already a comparison taking place in code:
oldValue
is initialized with the html content of the element, here to code extractwhich in multiple cases will not be equal to the input content. Perhaps it should be filled with
original_content
?The text was updated successfully, but these errors were encountered: