Removed ember-application-visit feature guards#13100
Removed ember-application-visit feature guards#13100chancancode merged 1 commit intoemberjs:masterfrom
ember-application-visit feature guards#13100Conversation
|
☔ The latest upstream changes (presumably #13096) made this pull request unmergeable. Please resolve the merge conflicts. |
|
Left some line comments. After resolving them, can you squash your commits and rebase against master? Thank you! |
65b7d99 to
a0d91b8
Compare
|
@chancancode, you said that we can just merge this into the actual class definition instead of reopening the class. How can I do that? and I still get some errors in Travis CI. Any solution? Thank you. |
There was a problem hiding this comment.
I got an error when I keep that line, application is declared but never used.
Instead of.. const Application = Engine.extend({
init: ...,
...
});
...
Application.reopen({
visit: ...
});
...It could just be... const Application = Engine.extend({
init: ...,
...,
visit: ...
});
...
... |
|
@chancancode thanks for feedback. We are now working on it. |
|
|
bd6b2cb to
b9af556
Compare
|
@chancancode Thank you for your help as we are new into this. @andrewflash Good job |
Removed `ember-application-visit` feature guards
|
Thanks! 👍 |
All the instances and feature guards of 'ember-application-visit' are removed as stated in issue #13088.
We are group of developers working started working on ember.js and we wanted to contribute something to the project. Thanks @chancancode for marking his issue as 'good for new contributors'.