We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54de00a commit 98cfc9bCopy full SHA for 98cfc9b
EmbAJAXScriptedSpan.h
@@ -89,7 +89,8 @@ class EmbAJAXScriptedSpan : public EmbAJAXElement {
89
return EmbAJAXElement::value(which);
90
}
91
const char* valueProperty(uint8_t which = EmbAJAXBase::Value) const override {
92
- return "EmbAJAXValue";
+ if (which == EmbAJAXBase::Value) return "EmbAJAXValue";
93
+ return EmbAJAXElement::valueProperty(which);
94
95
/** Send the given value to the client side script. Note that if you call this very
96
* often, the client will probably not see every value. It will only get to see
0 commit comments