Skip to content
This repository has been archived by the owner on Sep 5, 2024. It is now read-only.

Commit

Permalink
fix(mdMenu): re-enable keyboard controls
Browse files Browse the repository at this point in the history
closes #3205
  • Loading branch information
rschmukler committed Jun 11, 2015
1 parent fb245fb commit 2513153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/menu/menu-interim-element.js
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,6 @@ function MenuProvider($$interimElementProvider) {
// Annoying method to copy nodes to an array, thanks to IE
function nodesToArray(nodes) {
var results = [];
for (var i = nodes.length; i--; results.unshift(nodes[i]))
for (var i = nodes.length; i--; results.unshift(nodes[i])) {}
return results;
}

0 comments on commit 2513153

Please sign in to comment.