question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Ember 3.17 : error in animateOut

See original GitHub issue

Hello, When I update to 3.17. i got a parentElement undefined in

    animateOut(dropdownElement) {
      if (!this.animationEnabled) return;
      let parentElement = this.renderInPlace ? dropdownElement.parentElement.parentElement : dropdownElement.parentElement;
      let clone = dropdownElement.cloneNode(true);
      clone.id = `${clone.id}--clone`;
      clone.classList.remove(...this.transitioningInClass.split(' '));
      clone.classList.add(...this.transitioningOutClass.split(' '));
      parentElement.appendChild(clone);
      this.set('animationClass', this.transitioningInClass);
      waitForAnimations(clone, function () {
        parentElement.removeChild(clone);
      });
    }

I use ember-bootstrap-power-select so i don’t know yet which one is responsible

Issue Analytics

  • State:closed
  • Created 4 years ago
  • Reactions:9
  • Comments:16 (3 by maintainers)

github_iconTop GitHub Comments

5reactions
cibernoxcommented, Mar 24, 2020

I plan to make the beta final today, after I merge a couple PRs. Hopefully that will invite people using ember octane to update

1reaction
leondmellocommented, Mar 24, 2020

@leondmello yeah as i said it got tackled in ember basic dropdown 3, which is the one EPS 4-beta is using. The problem is im using different addons which rely on EBD 2.

Yes, I wrote the suggestion for all the other people for whom it might get fixed by updating to the BETA.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Errors - 4.7 - Ember API Documentation
Every Model has an errors property that is an instance of Errors . This can be used to display validation error messages returned...
Read more >
Uncaught Error: Could not find module `ember-resolver ...
Found the issue with one dependency in package.json "ember-light-table": "2.0.0-beta.4" It seems this version of ember table is not ...
Read more >
ember-source - npm
A JavaScript framework for creating ambitious web applications. Latest version: 4.9.3, last published: 16 days ago. Start using ember-source ...
Read more >
danlynn/ember-cli - Docker Image
Watchman watch limit error. While the ember-cli server is running in the docker container, it will detect changes to the ember webapp files....
Read more >
ember-cli | Yarn - Package Manager
Introduce a hard error when locally developing an addon whose package.json name differs from index.js name. Updates Project.prototype.findAddonByName / Addon.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found