| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | /*! |
||
| 45 | _update: function () { |
||
| 46 | var self = this; |
||
| 47 | |||
| 48 | this.jElement.empty(); |
||
| 49 | |||
| 50 | $('li', this.jVisible).each(function() { |
||
| 51 | self.jElement.append( |
||
| 52 | $('<option>', { |
||
| 53 | 'selected' : 'selected', |
||
| 54 | 'value' : $(this).data('value') |
||
| 55 | }).append($(this).text()) |
||
| 56 | ) |
||
| 57 | }); |
||
| 58 | |||
| 59 | this.trigger('change'); |
||
| 60 | this.jElement.change(); |
||
| 61 | } |
||
| 62 | }); |
||
| 63 | })(sx, sx.$, sx._); |
||
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.