pure-canvas
Advanced tools
Comparing version 0.6.14 to 0.6.15
@@ -86,3 +86,8 @@ "use strict"; | ||
if (context) { | ||
context.drawImage(cache, minX, minY, width, height); | ||
try { | ||
context.drawImage(cache, minX, minY, width, height); | ||
} | ||
catch (error) { | ||
// Ignore | ||
} | ||
} | ||
@@ -89,0 +94,0 @@ else { |
{ | ||
"name": "pure-canvas", | ||
"version": "0.6.14", | ||
"version": "0.6.15", | ||
"description": "TODO", | ||
@@ -5,0 +5,0 @@ "main": "lib/Stage.js", |
@@ -99,3 +99,7 @@ import Node, { Point, Bounds } from './Node'; | ||
if (context) { | ||
context.drawImage(cache, minX, minY, width, height); | ||
try { | ||
context.drawImage(cache, minX, minY, width, height); | ||
} catch (error) { | ||
// Ignore | ||
} | ||
} else { | ||
@@ -102,0 +106,0 @@ if (!next) { |
Sorry, the diff of this file is not supported yet
166392
3211