From 540c87f3c3a91f7b043d3f10cf10ba980139cf1b Mon Sep 17 00:00:00 2001 From: Nevtep Date: Mon, 4 Jul 2016 00:50:44 -0300 Subject: [PATCH] Add dirY to navMove calls to allow horizontal traverse --- navigationMixin.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/navigationMixin.jsx b/navigationMixin.jsx index 15e00db..cb9e6e7 100644 --- a/navigationMixin.jsx +++ b/navigationMixin.jsx @@ -37,7 +37,7 @@ module.exports = { } else if (typeof this.navOut === 'function') { return this.navOut(dir, dirY); } else if (this.navData.parent) { - return this.navData.parent.navGetMove(dir); + return this.navData.parent.navGetMove(dir, dirY); } }.bind(this);