| Conditions | 2 |
| Paths | 2 |
| Total Lines | 6 |
| Lines | 6 |
| Ratio | 100 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 0 |
| 1 | View Code Duplication | $('i.glyphicon-refresh-animate').hide(); |
|
| 38 | $.each(_opts.items[target], function (name, group) { |
||
| 39 | if (name.indexOf(q) >= 0) { |
||
| 40 | $('<option>').text(name).val(name).appendTo(groups[group][0]); |
||
| 41 | groups[group][1] = true; |
||
| 42 | } |
||
| 43 | }); |
||
| 44 | $.each(groups, function () { |
||
| 54 |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.