rabihkodeih / bootstrap-transfer

This is a two-column transfer multi-select widget inspired by Django admin module's similar widget.
Other
45 stars 46 forks source link

Undefined variable inner on load #14

Open jfals82 opened 9 years ago

jfals82 commented 9 years ago

I had an issue with the inner variable found at line 117. On load it was undefined:

Uncaught TypeError: Cannot read property 'toLowerCase' of undefined

I used a simple conditional to fix it:

var inner = _this.$filter_input.val() ? _this.$filter_input.val().toLowerCase() : "";

Thanks for the widget. Very useful.