From b0c71364e57f4d00aa8f4ae2c1d902dc5acd440c Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Thu, 13 Mar 2014 11:03:47 +0000 Subject: [PATCH] IE8 does not support the map() function, and we have to use the jquery $.map(), MKWS-77 --- tools/htdocs/mkws.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/htdocs/mkws.js b/tools/htdocs/mkws.js index e047215..6f57f6b 100644 --- a/tools/htdocs/mkws.js +++ b/tools/htdocs/mkws.js @@ -1019,7 +1019,7 @@ function team($, teamName) { function findnode(selector, teamName) { teamName = teamName || m_teamName; - selector = selector.split(',').map(function(s) { + selector = $.map(selector.split(','), function(s, i) { return s + '.mkwsTeam_' + teamName; }).join(','); -- 1.7.10.4