-
Notifications
You must be signed in to change notification settings - Fork 2k
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
minor updates/fixes to g-component, selector and menu #31
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
cfbf253
inNodes could be a NodeList so fix it to make indexOf to work
frankiefu 363bae4
a way to set label via attribute
frankiefu c4fa8c9
remove unnecessary code since getDistributedNodes is working in native
frankiefu 0500a46
show selected attribute in the examples
frankiefu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
<link rel="components" href="g-selection.html"> | ||
<template> | ||
<g-selection id="selection" on-select="selectionSelect" on-deselect="selectionDeselect"></g-selection> | ||
<content id="items"></content> | ||
<content id="items" select="*"></content> | ||
</template> | ||
<script> | ||
this.component({ | ||
|
@@ -19,12 +19,10 @@ | |
this.$.selection.multi = this.multi; | ||
}, | ||
getItems: function() { | ||
// TODO(sjmiles): distributedNodes not implemented natively yet | ||
// this.childNodes is LightDOM fallback which works unless we | ||
// are composited (in that case childNodes = <content>, and | ||
// distributeNodes is necessary to find the actual distributions) | ||
return this.$.items.getDistributedNodes() || | ||
Array.prototype.slice.call(this.childNodes, 0); | ||
return this.$.items.getDistributedNodes(); | ||
}, | ||
getSelectedItem: function() { | ||
return this.$.selection.getSelection(); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That's a tad nicer. :) |
||
}, | ||
_valueToIndex: function(inValue) { | ||
// find an item with value == inValue and return it's index | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Can you be more specific about your use case where inNodes is a NodeList. When I wrote this method, I assumed the input would always be the result of getDistributedNodes(). Does that method return a NodeList under native ShadowDOM?
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.
Yes, getDistributedNodes() under native ShadowDOM returns a NodeList.
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.
Ok, not sure how I missed that. Thank you.