Skip to content
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
908f6ff
Updating docs of this.getSlot
wesruv Jan 23, 2021
64f4f42
Updated my update to docs
wesruv Jan 23, 2021
8657a8c
Branch was auto-updated with the latest.
github-actions[bot] Jan 25, 2021
77ea0ae
Branch was auto-updated with the latest.
github-actions[bot] Jan 25, 2021
5e40fcc
Branch was auto-updated with the latest.
github-actions[bot] Jan 25, 2021
9c8bbf4
Merge branch 'master' into wesruv-patch-1
castastrophe Jan 25, 2021
b4222d8
Branch was auto-updated with the latest.
github-actions[bot] Jan 25, 2021
5766794
Branch was auto-updated with the latest.
github-actions[bot] Jan 25, 2021
15ed9e6
Branch was auto-updated with the latest.
github-actions[bot] Jan 25, 2021
412fc57
Merge branch 'master' into wesruv-patch-1
castastrophe Feb 4, 2021
1532f4a
Branch was auto-updated with the latest.
github-actions[bot] Feb 4, 2021
4573671
Branch was auto-updated with the latest.
github-actions[bot] Feb 11, 2021
add9ab8
Branch was auto-updated with the latest.
github-actions[bot] Feb 11, 2021
3153833
Branch was auto-updated with the latest.
github-actions[bot] Feb 11, 2021
819d71d
Branch was auto-updated with the latest.
github-actions[bot] Feb 11, 2021
4f1c104
Branch was auto-updated with the latest.
github-actions[bot] Feb 12, 2021
49b1e22
Branch was auto-updated with the latest.
github-actions[bot] Feb 15, 2021
1a9895a
Branch was auto-updated with the latest.
github-actions[bot] Feb 15, 2021
7bf77e1
Branch was auto-updated with the latest.
github-actions[bot] Feb 15, 2021
d936ab6
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
5835456
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
79359be
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
2d6b045
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
2e1a4ee
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
faaa80e
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
273f68c
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
b5c4225
Branch was auto-updated with the latest.
github-actions[bot] Feb 18, 2021
9690a36
Branch was auto-updated with the latest.
github-actions[bot] Feb 19, 2021
4d841c9
Branch was auto-updated with the latest.
github-actions[bot] Feb 19, 2021
c3c2074
Branch was auto-updated with the latest.
github-actions[bot] Feb 24, 2021
2b03131
Branch was auto-updated with the latest.
github-actions[bot] Feb 24, 2021
edb4397
Branch was auto-updated with the latest.
github-actions[bot] Mar 1, 2021
a22a5c8
Branch was auto-updated with the latest.
github-actions[bot] Mar 1, 2021
8bcd5d1
Merge branch 'master' into wesruv-patch-1
castastrophe Mar 17, 2021
d7c5c72
Branch was auto-updated with the latest.
github-actions[bot] Mar 17, 2021
861ed0f
Branch was auto-updated with the latest.
github-actions[bot] Mar 17, 2021
5cdcf8a
Branch was auto-updated with the latest.
github-actions[bot] Mar 26, 2021
1102e8e
Updates per feedback
wesruv Apr 7, 2021
2269918
Branch was auto-updated with the latest.
github-actions[bot] Apr 8, 2021
7e7fe3f
Branch was auto-updated with the latest.
github-actions[bot] Apr 8, 2021
cb79e82
Branch was auto-updated with the latest.
github-actions[bot] Apr 9, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions elements/pfelement/src/pfelement.js
Original file line number Diff line number Diff line change
Expand Up @@ -243,10 +243,10 @@ class PFElement extends HTMLElement {
}

/**
* Returns an array with all the slot with the provided name defined in the light DOM.
* If no value is provided (i.e., `this.getSlot()`), it returns all unassigned slots.
* Given a slot name, returns elements assigned to the slot as an arry.
* If no value is provided (i.e., `this.getSlot()`), it returns all children not assigned to a slot (without a slot attribute).
*
* @example: `this.hasSlot("header")`
* @example: `this.getSlot("header")`
*/
getSlot(name = "unassigned") {
if (name !== "unassigned") {
Expand Down