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 Oct 2, 2019. It is now read-only.
Wanted to let you know that there is a bug in selectize/choices.tpl.html template, which causes ui-select-choices element to be visible when page is initialized. I noticed this when I set my ui-select-choices element as absolute. Also console output "complained" about some template pares issue.
The problem is in selectize/choices.tpl.html template: ng-show=\"$select.open\"
It should be ng-show=\" || $select.open\", as code adds $select.search without "||". Without this change element ends up having ng-show="$select.search $select.open" and it fails due to syntax error.
Alternatively this could be changed in the code, so that $select.search is added with "||".
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Wanted to let you know that there is a bug in selectize/choices.tpl.html template, which causes ui-select-choices element to be visible when page is initialized. I noticed this when I set my ui-select-choices element as absolute. Also console output "complained" about some template pares issue.
The problem is in selectize/choices.tpl.html template:
ng-show=\"$select.open\"
It should be
ng-show=\" || $select.open\"
, as code adds$select.search
without "||". Without this change element ends up havingng-show="$select.search $select.open"
and it fails due to syntax error.Alternatively this could be changed in the code, so that $select.search is added with "||".
The text was updated successfully, but these errors were encountered: