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
Scrolling left and right through the text of an input field doesn't work.
The text was updated successfully, but these errors were encountered:
Can you reproduce the problem ? I can't reproduce it with Firefox and Chrome.
Sorry, something went wrong.
md-fab captures keyboard events when it is open.
function keyPressed(event) { switch (event.which) { case $mdConstant.KEY_CODE.SPACE: event.preventDefault(); return false; case $mdConstant.KEY_CODE.ESCAPE: vm.close(); event.preventDefault(); return false; case $mdConstant.KEY_CODE.LEFT_ARROW: doKeyLeft(event); return false; case $mdConstant.KEY_CODE.UP_ARROW: doKeyUp(event); return false; case $mdConstant.KEY_CODE.RIGHT_ARROW: doKeyRight(event); return false; case $mdConstant.KEY_CODE.DOWN_ARROW: doKeyDown(event); return false; } }
No branches or pull requests
Scrolling left and right through the text of an input field doesn't work.
The text was updated successfully, but these errors were encountered: