Commit c700f405 authored by techird's avatar techird

fix mistake

parent fdeb0a30
...@@ -14,7 +14,7 @@ KityMinder.registerModule( "Expand", function () { ...@@ -14,7 +14,7 @@ KityMinder.registerModule( "Expand", function () {
* @param {Function} policy_after_level 超过的层数执行的策略 * @param {Function} policy_after_level 超过的层数执行的策略
*/ */
function generateDeepPolicy( deep_level, policy_after_level ) { function generateDeepPolicy( deep_level, policy_after_level ) {
return function ( node, state, policy, level ) { return function ( node, state, policy, level ) {
var children, child, i; var children, child, i;
...@@ -45,7 +45,7 @@ KityMinder.registerModule( "Expand", function () { ...@@ -45,7 +45,7 @@ KityMinder.registerModule( "Expand", function () {
* @param {Enum} state 取值为 "expand" | "collapse",表示要对节点进行的操作是展开还是收缩 * @param {Enum} state 取值为 "expand" | "collapse",表示要对节点进行的操作是展开还是收缩
* @param {Function} policy 提供当前策略的函数,方便递归调用 * @param {Function} policy 提供当前策略的函数,方便递归调用
*/ */
MinderNode.EXAPND_POLICY = { var EXPAND_POLICY = MinderNode.EXAPND_POLICY = {
/** /**
* 策略 1:只修改当前节点的状态,不递归子节点的状态 * 策略 1:只修改当前节点的状态,不递归子节点的状态
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment