erhanfirat / combo-tree

ComboTree is a jQuery Plugin which is a combobox item with tree structured data list and multi/single selection options and more.
MIT License
79 stars 67 forks source link

Compatibility Issue with Internet Explorer #37

Closed khalilbsaibes closed 4 years ago

khalilbsaibes commented 4 years ago

IE 11 does not support arrow functions, for that reason we changed (line 462) list = this._elemItems.filter((index, item) => { to: list = this._elemItems.filter(function(index, item){

erhanfirat commented 4 years ago

Thanks for your support...