(id)
| 53 | * @returns {Class} |
| 54 | */ |
| 55 | var getThisTable = function (id) { |
| 56 | var that = thisTreeTable.that[id]; |
| 57 | if (!that) |
| 58 | hint.error( |
| 59 | id |
| 60 | ? "The treeTable instance with ID '" + id + "' not found" |
| 61 | : 'ID argument required' |
| 62 | ); |
| 63 | return that || null; |
| 64 | }; |
| 65 | |
| 66 | // 字符 |
| 67 | var MOD_NAME = 'treeTable'; |
no outgoing calls
no test coverage detected