mirror of
https://github.com/9001/copyparty.git
synced 2025-08-17 00:52:16 -06:00
v0.6.1
This commit is contained in:
parent
5c18d12cbf
commit
d08245c3df
|
@ -1,8 +1,8 @@
|
|||
# coding: utf-8
|
||||
|
||||
VERSION = (0, 6, 0)
|
||||
VERSION = (0, 6, 1)
|
||||
CODENAME = "CHRISTMAAAAAS"
|
||||
BUILD_DT = (2020, 12, 1)
|
||||
BUILD_DT = (2020, 12, 14)
|
||||
|
||||
S_VERSION = ".".join(map(str, VERSION))
|
||||
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)
|
||||
|
|
|
@ -660,6 +660,10 @@ function md_backspace() {
|
|||
if (/^\s*$/.test(left))
|
||||
return true;
|
||||
|
||||
// same if selection
|
||||
if (o0 != dom_src.selectionEnd)
|
||||
return true;
|
||||
|
||||
// same if line is all-whitespace or non-markup
|
||||
var v = m[0].replace(/[^ ]/g, " ");
|
||||
if (v === m[0] || v.length !== left.length)
|
||||
|
|
Loading…
Reference in a new issue