From 5d9da2d56e29610a180df4c62cb0e2b6525531d6 Mon Sep 17 00:00:00 2001 From: Brett Zamir Date: Sat, 20 Oct 2018 23:38:47 +0800 Subject: [PATCH] - Breaking change: For checkbox for persisting choice of initial use storage approval in storage extension dialog, turn on by default for convenience of most users (must still hit "ok" and users can still turn off the checkbox) --- CHANGES.md | 3 +++ editor/extensions/ext-storage.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 4e7ee38e..39227be8 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,6 +1,9 @@ # 3.0.0 - See pre-release version notes for other changes that occurred with 3.0.0 +- Breaking change: For checkbox for persisting choice of initial use storage + approval in storage extension dialog, turn on by default for convenience of + most users (must still hit "ok" and users can still turn off the checkbox) - Fix: Map extension click events to "mousedown" so they can be received on touch devices (since `touch.js` changes `touchstart` to `mousedown`) (@ClemArt); closes #168 diff --git a/editor/extensions/ext-storage.js b/editor/extensions/ext-storage.js index 33398309..c9e91b10 100644 --- a/editor/extensions/ext-storage.js +++ b/editor/extensions/ext-storage.js @@ -261,7 +261,7 @@ export default { null, { label: rememberLabel, - checked: false, + checked: true, tooltip: rememberTooltip } );