From 2464f2d1a03b50284e7ab7609df7c7f8b1006bd4 Mon Sep 17 00:00:00 2001 From: Jamie Neubert Pedersen Date: Thu, 23 Sep 2021 08:58:33 +0200 Subject: [PATCH] Fix logos for browsers except Chrome Android --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 061cf74..1cda6c1 100644 --- a/README.md +++ b/README.md @@ -2,10 +2,11 @@ > A tiny (512 byte) virtual DOM template engine for embedded projects -| IE / Edge IE / Edge | Firefox Firefox | Chrome Chrome | Safari Safari | Opera Opera | iOS Safari iOS Safari | Chrome for Android Chrome for Android | +| IE / Edge IE / Edge | Firefox Firefox | Chrome Chrome | Safari Safari | Opera Opera | iOS Safari iOS Safari | Chrome for Android Chrome for Android | | --------- | --------- | --------- | --------- | --------- | --------- | --------- | | Edge 14+ | 45+ | 49+ | 10+ | 37+ | 10.2+ | 55+ + **.dom** borrows some concepts from React.js (such as the re-usable Components and the Virtual DOM) and tries to replicate them with the smallest possible footprint, exploiting the ES6 javascript features. Why? Because with such library you can create powerful GUIs in tight space environments, such as IoT devices, where saving even an extra byte actually matters!