-
-
Notifications
You must be signed in to change notification settings - Fork 333
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
paper menu, paper select and paper autocomplete #395
Conversation
…into paper-menu
fixed issue with ember 2.7+ select-options
default: | ||
break; | ||
scrollTo(option /*, e */) { | ||
if (!self.document || !option) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self is undefined
} | ||
}, | ||
let publicAPI = this.get('publicAPI'); | ||
let optionsList = self.document.getElementById(`ember-power-select-options-${publicAPI.uniqueId}`); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
self is undefined
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The global self is a shortcut to window.self. They are both the very same object.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Understood. When I pointed my existing project to the latest commit f780b54 I got those 2 lines as lint errors.
Use ember-power-select 1.0.0-beta.23's new `defaultHighlighted` option to override its default highlighting (on open and filter/search) to match AM's behaviour
@miguelcobain autocomplete is ready to be merged. The scroll mask and searchTextChanged I'm working on can wait. Let's merge it finally - keep the warning sign in demo app - some autocomplete API might change slightly |
* kludge to fix glimmer2 support pending interaction from ember team * fixed issue with ember 2.7+ select-options * API change for autocomplete and support for tracking search text * fixed floating label issue * added readonly helper to searchText
receives a focus.
paper-select remaining todos:
|
No description provided.