(id)
| 70 | } |
| 71 | |
| 72 | itemUnbind (id) { |
| 73 | delete this.items[id]; |
| 74 | |
| 75 | if (this.props.itemUnbind) { |
| 76 | this.props.itemUnbind(...arguments); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | itemChange (id, value, result) { |
| 81 | this.items[id].$value = value; |
nothing calls this directly
no outgoing calls
no test coverage detected