From 377fd8bf9d1019f1596cb9db4ff426198766c785 Mon Sep 17 00:00:00 2001 From: Russ Watson Date: Tue, 4 Oct 2016 10:34:06 -0500 Subject: [PATCH] Sets the viewport object for the specified key on the instruction's config object --- src/router.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/router.js b/src/router.js index db2c673d..24ce0a70 100644 --- a/src/router.js +++ b/src/router.js @@ -466,6 +466,7 @@ function evaluateNavigationStrategy(instruction: NavigationInstruction, evaluato for (let key in modules) { let vp = instruction.config.viewPorts[key] || {}; vp.moduleId = modules[key]; + instruction.config.viewPorts[key] = vp; } return instruction;