(item)
| 43 | |
| 44 | // Filter out all items except for the one passed in the argument |
| 45 | function onlyItem (item) { |
| 46 | return function () { |
| 47 | return $(this).val() == item.id; |
| 48 | }; |
| 49 | } |
| 50 | |
| 51 | for (var d = 0; d < data.length; d++) { |
| 52 | var item = this._normalizeItem(data[d]); |
no outgoing calls
no test coverage detected
searching dependent graphs…