From 9608995d9c32737590039d4cb444295f1322ad4f Mon Sep 17 00:00:00 2001 From: Pascal Seitz Date: Sun, 4 Dec 2016 11:59:07 +0100 Subject: [PATCH] Fix spaces --- src/js/selection/SelectionManager.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/selection/SelectionManager.js b/src/js/selection/SelectionManager.js index 2202c8ce..d04d3046 100644 --- a/src/js/selection/SelectionManager.js +++ b/src/js/selection/SelectionManager.js @@ -95,7 +95,7 @@ if (!this.currentSelection || !this.currentSelection.hasPastedContent) { if (window.localStorage.getItem('piskel.clipboard')) { this.currentSelection = JSON.parse(window.localStorage.getItem('piskel.clipboard')); - }else{ + } else { return; } }