We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Toggle a Sidenav before the Transition causes an error on console
It shouldn't show any errors on toggle.
It's working the toggle, but we can see errors on console
<button md-button class="md-icon-button" aria-label="Open Menu" (click)="menu.toggle()"> <md-icon>menu</md-icon> </button> <md-sidenav #menu [opened]="true" mode="side" layout-padding> My Sidenav </md-sidenav>
http://plnkr.co/edit/Ri7CqKVl0b3czY5SYg4g?p=preview
@[email protected] @angular/[email protected] Chrome 54.0.2840.98 (64-bit) Mac OSX 10.11.6
@[email protected]
@angular/[email protected]
Is related to #1382 and #1370. Something with _onTransitionEnd()
There's is a temporary fix based on @omararturo asnwer:
import { Component, OnInit, ViewChild } from '@angular/core'; import { MdSidenav } from '@angular/material'; @Component({ selector: 'app', template: './app.component.html' }) export class AppComponent implements OnInit { @ViewChild('sidenav') sidenav: MdSidenav; ngOnInit(): void { this.sidenav._onTransitionEnd = function () { this._openPromise = null; this._closePromise = null; } } }
The text was updated successfully, but these errors were encountered:
Thanks ! Very helpfull
Sorry, something went wrong.
This issue has been automatically locked due to inactivity. Please file a new issue if you are encountering a similar or related problem.
Read more about our automatic conversation locking policy.
This action has been performed automatically by a bot.
mmalerba
No branches or pull requests
Bug
Toggle a Sidenav before the Transition causes an error on console
What is the expected behavior?
It shouldn't show any errors on toggle.
What is the current behavior?
It's working the toggle, but we can see errors on console
What are the steps to reproduce?
http://plnkr.co/edit/Ri7CqKVl0b3czY5SYg4g?p=preview
Which versions of Angular, Material, OS, browsers are affected?
@[email protected]
@angular/[email protected]
Chrome 54.0.2840.98 (64-bit)
Mac OSX 10.11.6
Is there anything else we should know?
Is related to #1382 and #1370.
Something with _onTransitionEnd()
There's is a temporary fix based on @omararturo asnwer:
The text was updated successfully, but these errors were encountered: