diff --git a/svg-notifications.md b/svg-notifications.md deleted file mode 100644 index 577e7d07c..000000000 --- a/svg-notifications.md +++ /dev/null @@ -1,38 +0,0 @@ -Chrome notifications allow you to show an SVG image via a data-uri - -Taking advantage of this might allow us to show nicely formatted notifications - -build a template using pure svg: - -```svg - - - - Domain: https://boardroom.to - From: 0xabcdef - To: 0xfedcba - Value: 1.025 Ether - Gas: 0.025 Ether - - -``` - -generate uri -`'data:image/svg+xml;charset=utf-8,'+encodeURIComponent(svgSrc)` - -or svg-embedded html: - -```svg - - - - -
- The quick brown fox jumps over the lazy dog. - Pack my box with five dozen liquor jugs -
- -
-
-```