]> Untitled Git - lemmy.git/commitdiff
Fixing toast background for all but i386. Fixes #794
authorDessalines <tyhou13@gmx.com>
Wed, 10 Jun 2020 02:41:04 +0000 (22:41 -0400)
committerDessalines <tyhou13@gmx.com>
Wed, 10 Jun 2020 02:41:04 +0000 (22:41 -0400)
ui/src/utils.ts

index cb56ba58102be8c61ed2515fd5bd3b8818eeae39..82900cab61fe5c489608dc4d7a4cd07aa48adcbc 100644 (file)
@@ -481,7 +481,7 @@ export function messageToastify(
     text: `${body}<br />${creator}`,
     avatar: avatar,
     backgroundColor: backgroundColor,
-    className: 'text-body',
+    className: 'text-dark',
     close: true,
     gravity: 'top',
     position: 'right',
@@ -868,9 +868,7 @@ function canUseWebP() {
   if (!!(elem.getContext && elem.getContext('2d'))) {
     var testString = !(window.mozInnerScreenX == null) ? 'png' : 'webp';
     // was able or not to get WebP representation
-    return (
-      elem.toDataURL('image/webp').startsWith('data:image/' + testString)
-    );
+    return elem.toDataURL('image/webp').startsWith('data:image/' + testString);
   }
 
   // very old browser like IE 8, canvas not supported