Numbersetting.edit.drag.minMoveSize

Overview[ depends on jquery.ztree.exedit js ]

The minimum offset which used to determine the drag operator start. (Unit: px) It is valid when [setting.edit.enable = true]

Please adjust the value according to needs. Note: If it is too small, will easily lead to misoperation when you click mouse.

Default: 5

Examples of setting

1. Set the minimum offset is 10px.

var setting = {
	edit: {
		enable: true,
		drag: {
			minMoveSize: 10
		}
	}
};
......