Skip to content
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

Declare _element property as private #1260

Merged
merged 1 commit into from Sep 25, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions addon/components/bs-carousel/slide.js
Expand Up @@ -24,6 +24,7 @@ export default class CarouselSlide extends Component.extend(ComponentChild) {
/**
* @property _element
* @type null | HTMLElement
* @private
*/
@ref('mainNode') _element = null;

Expand Down
1 change: 1 addition & 0 deletions addon/components/bs-collapse.js
Expand Up @@ -35,6 +35,7 @@ export default class Collapse extends Component {
/**
* @property _element
* @type null | HTMLElement
* @private
*/
@ref('mainNode') _element = null;

Expand Down
1 change: 1 addition & 0 deletions addon/components/bs-dropdown/menu.js
Expand Up @@ -23,6 +23,7 @@ export default class DropdownMenu extends Component {
/**
* @property _element
* @type null | HTMLElement
* @private
*/
@ref('menuElement') menuElement = null;

Expand Down
1 change: 1 addition & 0 deletions addon/components/bs-form/element.js
Expand Up @@ -200,6 +200,7 @@ export default class FormElement extends FormGroup {
/**
* @property _element
* @type null | HTMLElement
* @private
*/
@ref('mainNode') _element = null;

Expand Down