From: Steve Jones Date: Fri, 26 Aug 2016 15:48:09 +0000 (+0200) Subject: Bug fix: indexFromSetName on invisible sets (#771) X-Git-Tag: v2.0.0~22 X-Git-Url: https://adrianiainlam.tk/git/?a=commitdiff_plain;h=051a854a82738473230fd1c20b6c9cacb036269d;hp=051a854a82738473230fd1c20b6c9cacb036269d;p=dygraphs.git Bug fix: indexFromSetName on invisible sets (#771) * indexFromSetName works with trailing invisible sets If the last set(s) have their visibility set to false, their names would not be added to `setIndexByName_`, so `indexFromSetName` would not be able to find them. This fixes that problem. * Corrected test. * Properly clone graph options ---