- 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)master
parent
644af63e4a
commit
5d9da2d56e
|
@ -1,6 +1,9 @@
|
||||||
# 3.0.0
|
# 3.0.0
|
||||||
|
|
||||||
- See pre-release version notes for other changes that occurred with 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
|
- Fix: Map extension click events to "mousedown" so they can be received
|
||||||
on touch devices (since `touch.js` changes `touchstart` to
|
on touch devices (since `touch.js` changes `touchstart` to
|
||||||
`mousedown`) (@ClemArt); closes #168
|
`mousedown`) (@ClemArt); closes #168
|
||||||
|
|
|
@ -261,7 +261,7 @@ export default {
|
||||||
null,
|
null,
|
||||||
{
|
{
|
||||||
label: rememberLabel,
|
label: rememberLabel,
|
||||||
checked: false,
|
checked: true,
|
||||||
tooltip: rememberTooltip
|
tooltip: rememberTooltip
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue