From 43b1fb7ae077500f69ee5939d80dc8ed83243275 Mon Sep 17 00:00:00 2001 From: Thomas Brouard Date: Wed, 2 Nov 2016 21:21:56 +0100 Subject: [PATCH] Fix newTabButtonText option --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 51315b3..064db9b 100644 --- a/index.js +++ b/index.js @@ -38,7 +38,7 @@ class TabGroup extends EventEmitter { viewClass: args.viewClass || "etabs-view", closeButtonText: args.closeButtonText || "✖", newTab: args.newTab, - newTabButtonText: args.newTabButton || "+", + newTabButtonText: args.newTabButtonText || "+", ready: args.ready }; this.tabContainer = document.querySelector(options.tabContainerSelector);