From 56f65199a34d30d27e0b8644c0c64e9f270066f9 Mon Sep 17 00:00:00 2001 From: Zeno Rocha Date: Mon, 1 May 2017 20:41:57 -0700 Subject: [PATCH] Adds large button styling on #5 sites --- src/scripts/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts/util.js b/src/scripts/util.js index db2afe5..49c51f3 100644 --- a/src/scripts/util.js +++ b/src/scripts/util.js @@ -6,6 +6,6 @@ export const htmlButton = ` `; export const isLargeButton = () => { - const sites = /^(github.com|gist.github.com|medium.com|www.npmjs.com|developer.mozilla.org)$/; + const sites = /^(github.com|gist.github.com|medium.com|www.npmjs.com|developer.mozilla.org|tableless.com.br|laracasts.com)$/; return sites.exec(document.location.hostname); }