From 2a02a255dabef48fa8eab28be168d0b363ad8015 Mon Sep 17 00:00:00 2001 From: Anders Gustafsson Date: Fri, 1 Jun 2018 13:33:46 +0200 Subject: [PATCH] P5-2442 - Change color on background --- dist/image-editor.js | 2 +- src/Canvas.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/image-editor.js b/dist/image-editor.js index d93a2d3..9a6e047 100644 --- a/dist/image-editor.js +++ b/dist/image-editor.js @@ -391,7 +391,7 @@ var Canvas = fabric.util.createClass(fabric.Canvas, { // Allow touch scrolling on touch-devices larger than mobile screen sizes. allowTouchScrolling: !util.isMobile(), stateful: false, - backgroundColor: '#d2d2d2', + backgroundColor: '#ededed', preserveObjectStacking: true, selection: false, width: dimensions.width, diff --git a/src/Canvas.js b/src/Canvas.js index ac35fb7..bd3eeda 100644 --- a/src/Canvas.js +++ b/src/Canvas.js @@ -26,7 +26,7 @@ var Canvas = fabric.util.createClass(fabric.Canvas, { // Allow touch scrolling on touch-devices larger than mobile screen sizes. allowTouchScrolling: !util.isMobile(), stateful: false, - backgroundColor: '#d2d2d2', + backgroundColor: '#ededed', preserveObjectStacking: true, selection: false, width: dimensions.width,