From 4505ad17e2868d814e32238c681dae5a66c0bdd4 Mon Sep 17 00:00:00 2001 From: Bryan Ashby Date: Wed, 22 Jul 2015 23:09:10 -0600 Subject: [PATCH] * Allow pause to be 'true' --- core/menu_module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/menu_module.js b/core/menu_module.js index f1c8a1dc..c92b9560 100644 --- a/core/menu_module.js +++ b/core/menu_module.js @@ -226,7 +226,7 @@ MenuModule.prototype.finishedLoading = function() { } }; - if('end' === self.menuConfig.pause) { + if('end' === self.menuConfig.pause || true === self.menuConfig.pause) { // :TODO: really need a client.term.pause() that uses the correct art/etc. self.client.waitForKeyPress(function kp(ch, key) { nextAction();