Skip to content

Commit ca702dc

Browse files
authored
Merge pull request #73 from yapplabs/dom-access-after-teardown
Avoid trying to access this.element when component has been torn down
2 parents ea357ae + 244e062 commit ca702dc

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

addon/components/nav-stack/component.js

+17
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,10 @@ export default class NavStack extends Component {
234234
}
235235

236236
cut() {
237+
if (this.isDestroying || this.isDestroyed) {
238+
return;
239+
}
240+
237241
this.horizontalTransition({
238242
toValue: this.computeXPosition(),
239243
animate: false,
@@ -249,6 +253,9 @@ export default class NavStack extends Component {
249253
}
250254

251255
slideForward() {
256+
if (this.isDestroying || this.isDestroyed) {
257+
return;
258+
}
252259
this.horizontalTransition({
253260
toValue: this.computeXPosition(),
254261
finishCallback: () => {
@@ -258,6 +265,9 @@ export default class NavStack extends Component {
258265
}
259266

260267
slideBack() {
268+
if (this.isDestroying || this.isDestroyed) {
269+
return;
270+
}
261271
this.horizontalTransition({
262272
toValue: this.computeXPosition(),
263273
finishCallback: () => {
@@ -268,6 +278,10 @@ export default class NavStack extends Component {
268278
}
269279

270280
slideUp() {
281+
if (this.isDestroying || this.isDestroyed) {
282+
return;
283+
}
284+
271285
let debug = this.birdsEyeDebugging;
272286
this.verticalTransition({
273287
element: this.element,
@@ -277,6 +291,9 @@ export default class NavStack extends Component {
277291
}
278292

279293
slideDown() {
294+
if (this.isDestroying || this.isDestroyed) {
295+
return;
296+
}
280297
let debug = this.birdsEyeDebugging;
281298
let clonedElement = this.clones.elements[this.clones.elements.length - 1];
282299
let y = debug ? 480 : clonedElement.getBoundingClientRect().height;

0 commit comments

Comments
 (0)