-
Notifications
You must be signed in to change notification settings - Fork 60
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
Attempted to remove an unattached handler #145
Comments
I've got a similar/same issue with two For me it only happens if one of the tables is destroyed. We are setting a Debugging flow
@vyobukhov maybe you can check if the debugger flow is the same for you. Given error is triggered in two different cases here and here @runspired I'm not sure how to dig deeper? |
does it seem like it would be viable to return inside |
@kylemellander - yes that would fix error - but wondering @runspired's thoughts on GC perf issues - do the listeners still hold a reference that the browser engine will have to run GC cycles for? Or did ember tear them down already for us? (have not read lib code at all, fyi) - but looking at options for new client's app that needs mobile infinite scroll - so might in future if this project seems active enough |
Taken from adamjmcgrath/smoke-and-mirrors/tree/fix-tests
I got the same error. I use smoke-and-mirrors version 0.6.2.But I can't. How to solve? |
+1 |
I'm seeing this error when running my acceptance test, it breaks all my tests afterwards. Would really appreciate some help on how to fix it.
|
the repo moved, try upgrading and use https://github.com/html-next/vertical-collection |
Should be fixed by updating to |
Hello,
I have two vertical collections on routes: /dialogs and /dialog/:id. The first one contains list of dialogs and the other one contains list of messages in this dialog.
Code of the first one (/dialogs):
{{#vertical-collection content=model defaultHeight=100 alwaysUseDefaultHeight=true useContentProxy=false as |item index| }} {{c-dialog model=item open="open"}} {{/vertical-collection}}
Code of the second one (/dialog/:id):
{{#vertical-collection content=messages defaultHeight=30 alwaysRemeasure=true renderFromLast=true as |item index| }} {{c-dialog-message model=item}} {{/vertical-collection}}
When I'm trying to go back from messages to dialogs (/dialogs => /dialog/1 => /dialogs) list I'm getting this error "Attempted to remove an unattached handler"
But when I'm navigating through one more route (for example /dialogs => /dialog/1 => /profile => /dialogs) everything works fine.
Is it bug? Or I'm doing something wrong?
The text was updated successfully, but these errors were encountered: