groenroos / minimalect

Minimal select replacement for jQuery
350 stars 52 forks source link

placeholder bugfix #80

Open araki-y opened 2 years ago

araki-y commented 2 years ago

There seems to be a bug in the setting judgment of data-placeholder.

A || B || (C != null) ? C : D

is the same as

( A || B || (C != null) ) ? C : D