mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 18:55:26 +00:00
fix(Edit) length of patch condition
This commit is contained in:
parent
3d80f5aa03
commit
da889b10bb
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ var CloudCmd, Util, DOM, CloudFunc, ace, DiffProto, diff_match_patch;
|
|||
Util.ifExec(!isDiff, function(patch) {
|
||||
var query,
|
||||
isString = Util.isString(patch),
|
||||
length = isString && patch.length < lValue.length;
|
||||
length = patch.length < lValue.length;
|
||||
|
||||
Value = lValue;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue