You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
As in default build of Zepto.js 'selector' module isn't included, fancySelect throws an error on 56: ...find(':selected')
to make it work replace it with .. find('option').filter(function(){return this.selected === true;});
and also 82: outerHeight()
isn't supported in Zepto, but you can easily reimplement it, or simply use height() + box-sizing: border-box
The text was updated successfully, but these errors were encountered:
As in default build of Zepto.js 'selector' module isn't included, fancySelect throws an error on
56: ...find(':selected')
to make it work replace it with
.. find('option').filter(function(){return this.selected === true;});
and also
82: outerHeight()
isn't supported in Zepto, but you can easily reimplement it, or simply use
height() + box-sizing: border-box
The text was updated successfully, but these errors were encountered: