Merge pull request #76 from zhaouv/v2.0-editor-20180304

V2 0 editor 20180304
This commit is contained in:
Zhang Chen 2018-03-12 15:49:27 +08:00 committed by GitHub
commit 817e95c225
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -90,11 +90,17 @@ editor_mode.prototype.objToTable = function(obj,commentObj){
node = node.parentNode; node = node.parentNode;
} }
editor_mode.onmode(editor_mode._ids[node.getAttribute('id')]); editor_mode.onmode(editor_mode._ids[node.getAttribute('id')]);
var thiseval = JSON.parse(input.value); var thiseval=null;
try{
thiseval = JSON.parse(input.value);
}catch(ee){
printe(field+' : '+ee);
throw ee;
}
if(checkRange(comment,thiseval)){ if(checkRange(comment,thiseval)){
editor_mode.addAction(['change',field,thiseval]); editor_mode.addAction(['change',field,thiseval]);
} else { } else {
printe('输入的值不合要求,请鼠标放置在注释上查看说明'); printe(field+' : 输入的值不合要求,请鼠标放置在注释上查看说明');
} }
} }
input.ondblclick = function(){ input.ondblclick = function(){