Questions tagged [ember.js-3]

For issues relating to development with version 3.x.x of Ember.js

On February 14, 2018, Ember.js version 3.0 was released.

As always, since this is a major version of Ember, 3.0 did not add any features, but instead removed long-deprecated APIs and support for legacy platforms

18 questions
0
votes
1 answer

How to reset scroll on route changes in ember 3?

I'm trying to use hook activate, didTransition, or willTransition, but none of these work, they do nothing at all. I try to start by one route: // app/routes/section.js import Route from '@ember/routing/route'; export default class SectionRoute…
Chiara Ani
  • 918
  • 7
  • 25
0
votes
1 answer

How do I deprecate a feature in my addon?

I am writing an Ember.js Addon, and I need to deprecate a feature. Can I use the same deprecation system that Ember uses? I want my users to be able to silence the warnings. Ideally, I also need to be able to test that the deprecation message works…
handlebears
  • 2,168
  • 8
  • 18
0
votes
2 answers

How to exclude a component in ember build

Short Explanation: How to exclude all component.hbs, component.hbs.js and this.route('component) mention in router.js related to a component while ember build. Long Explanation: Think that you have a component in your ember app which you want to be…
Sarath Damaraju
  • 309
  • 2
  • 13
1
2