Skip to content

Commit

Permalink
Correct check for IE UserAgent
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewnicols committed Apr 9, 2014
1 parent 9b9c89d commit 314a94d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node-menunav/js/node-menunav.js
Original file line number Diff line number Diff line change
Expand Up @@ -901,7 +901,7 @@ Y.extend(NodeMenuNav, Y.Plugin.Base, {

menu.setXY(aXY);

if (UA.ie < 8) {
if (UA.ie && UA.ie < 8) {

if (UA.ie === 6 && !menu.hasIFrameShim) {

Expand Down

0 comments on commit 314a94d

Please sign in to comment.