Supports AutoConnectAux

pull/41/head
Hieromon Ikasamo 6 years ago
parent 4f7dc681e1
commit af52d809a4
  1. 1
      src/AutoConnect.cpp
  2. 5
      src/AutoConnectPage.cpp

@ -589,6 +589,7 @@ String AutoConnect::_invokeResult(PageArgument& args) {
bool AutoConnect::_classifyHandle(HTTPMethod method, String uri) { bool AutoConnect::_classifyHandle(HTTPMethod method, String uri) {
AC_DBG("Host:%s, URI:%s\n", _webServer->hostHeader().c_str(), uri.c_str()); AC_DBG("Host:%s, URI:%s\n", _webServer->hostHeader().c_str(), uri.c_str());
if (uri == _uri) { if (uri == _uri) {
AC_DBG("%s already allocated\n", _uri.c_str());
return true; // The response page already exists. return true; // The response page already exists.
} }

@ -108,6 +108,11 @@ const char AutoConnect::_CSS_UL[] PROGMEM = {
"-moz-appearance:checkbox;" "-moz-appearance:checkbox;"
"-webkit-appearance:checkbox;" "-webkit-appearance:checkbox;"
"}" "}"
"ul.noorder>input[type=\"radio\"]{"
"margin-right:0.5em;"
"-moz-appearance:radio;"
"-webkit-appearance:radio;"
"}"
}; };
/**< Image icon for inline expansion, the lock mark. */ /**< Image icon for inline expansion, the lock mark. */

Loading…
Cancel
Save