From d588017b8b5102d4a7e8e1a90bfe90d02110e431 Mon Sep 17 00:00:00 2001 From: Nathan Downs Date: Wed, 4 Sep 2019 12:02:01 -0700 Subject: [PATCH] Change additional 36x36 references in the README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ea4a780d..19ba8108 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ var img = div.querySelector('img'); // note the div is preserved img.parentNode === div; // true -img.src; // https://twemoji.maxcdn.com/36x36/2764.png +img.src; // https://twemoji.maxcdn.com/2/72x72/2764.png img.alt; // \u2764\uFE0F img.className; // emoji img.draggable; // false @@ -76,7 +76,7 @@ Here's the list of properties accepted by the optional object that can be passed base: string, // default MaxCDN ext: string, // default ".png" className: string, // default "emoji" - size: string|number, // default "36x36" + size: string|number, // default "72x72" folder: string // in case it's specified // it replaces .size info, if any } @@ -92,7 +92,7 @@ By default it is a function like the following one: function imageSourceGenerator(icon, options) { return ''.concat( options.base, // by default Twitter Inc. CDN - options.size, // by default "36x36" string + options.size, // by default "72x72" string '/', icon, // the found emoji as code point options.ext // by default ".png"