From adc657898c4e032c19c5cd052d7259a217b1304e Mon Sep 17 00:00:00 2001 From: Daniel Imms Date: Thu, 13 Jul 2017 09:23:56 -0700 Subject: [PATCH] Remove bad getOption param --- src/xterm.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.js b/src/xterm.js index cf777477..7e9b1523 100644 --- a/src/xterm.js +++ b/src/xterm.js @@ -396,7 +396,7 @@ Terminal.prototype.focus = function() { * Retrieves an option's value from the terminal. * @param {string} key The option key. */ -Terminal.prototype.getOption = function(key, value) { +Terminal.prototype.getOption = function(key) { if (!(key in Terminal.defaults)) { throw new Error('No option with key "' + key + '"'); }