We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92f2907 commit 0521889Copy full SHA for 0521889
EmbUI/ui.cpp
@@ -29,16 +29,6 @@ void Interface::frame2(const String &id, const String &value){
29
}
30
31
32
-void Interface::frame(const String &id, const String &value){
33
- StaticJsonDocument<256> obj;
34
- obj[FPSTR(P_id)] = id;
35
- obj[FPSTR(P_value)] = value;
36
-
37
- if (!json_frame_add(obj.as<JsonObject>())) {
38
- frame(id, value);
39
- }
40
-}
41
42
void Interface::hidden(const String &id, const String &value){
43
StaticJsonDocument<256> obj;
44
obj[FPSTR(P_html)] = FPSTR(P_hidden);
0 commit comments