(commandselector)
| 305 | |
| 306 | // return the matching <pre> in .help for each item in commandselector |
| 307 | function helpselector(commandselector) { |
| 308 | return commandselector.map(function (span) { |
| 309 | return document.getElementById(this.getAttribute('helpref')); |
| 310 | }); |
| 311 | } |
| 312 | |
| 313 | // return the <span>'s in #command that are linked to each <pre> in pres |
| 314 | function optionsselector(pres, spans) { |
no outgoing calls
no test coverage detected