Skip to content
Snippets Groups Projects
Commit a807fae0 authored by Odilitime's avatar Odilitime
Browse files

change debug message

parent 5533fea9
No related branches found
No related tags found
No related merge requests found
......@@ -18,7 +18,7 @@ std::unique_ptr<Component> AElement::renderer(const std::shared_ptr<Node> node,
std::map<std::string, std::string>::const_iterator hrefPair = tagNode->properties.find("href");
if (hrefPair != tagNode->properties.end()) {
component->onClick = [hrefPair]() {
std::cout << "Direct to: " << hrefPair->second << std::endl;
std::cout << "AElement::renderer:::onClick - Direct to: " << hrefPair->second << std::endl;
window->navTo(hrefPair->second);
};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment