From 20ae4c2689ed82016a71e74b36565eaed78f3f4c Mon Sep 17 00:00:00 2001 From: Dan Finlay Date: Thu, 8 Sep 2016 11:20:55 -0700 Subject: Fix logo usage for metamask-logo v2.0.0 - No longer need to check for webGL compliance (svg rendered!) - logo.canvas has been replaced with logo.container, since svg doesn't render to canvas but to an element. Otherwise, worked with very little effort!! Fixes #624 --- ui/app/components/mascot.js | 17 +++-------------- 1 file changed, 3 insertions(+), 14 deletions(-) (limited to 'ui/app') diff --git a/ui/app/components/mascot.js b/ui/app/components/mascot.js index f2b00262b..d0d599ea0 100644 --- a/ui/app/components/mascot.js +++ b/ui/app/components/mascot.js @@ -14,7 +14,6 @@ function Mascot () { pxNotRatio: true, width: 200, height: 200, - staticImage: './images/icon-512.png', }) if (!this.logo.webGLSupport) return this.refollowMouse = debounce(this.logo.setFollowMouse.bind(this.logo, true), 1000) @@ -27,28 +26,18 @@ Mascot.prototype.render = function () { // and we dont get that until render this.handleAnimationEvents() - return ( - - h('#metamask-mascot-container') - - ) + return h('#metamask-mascot-container') } Mascot.prototype.componentDidMount = function () { var targetDivId = 'metamask-mascot-container' var container = document.getElementById(targetDivId) - if (!this.logo.webGLSupport) { - var staticLogo = this.logo.staticLogo - staticLogo.style.marginBottom = '40px' - container.appendChild(staticLogo) - } else { - container.appendChild(this.logo.canvas) - } + container.appendChild(this.logo.container) } Mascot.prototype.componentWillUnmount = function () { if (!this.logo.webGLSupport) return - this.logo.canvas.remove() + this.logo.container.remove() } Mascot.prototype.handleAnimationEvents = function () { -- cgit