(data)
| 734 | } |
| 735 | |
| 736 | function selectTreeNodeZSet (data) { |
| 737 | if (data.items.length > 0) { |
| 738 | renderEjs('templates/editZSet.ejs', data, $('#body'), function() { |
| 739 | console.log('rendered zset template'); |
| 740 | if ((uiConfig.jsonViewAsDefault & uiConfig.const.jsonViewZSet) > 0) dataUIFuncs.onModeJsonButtonClick() |
| 741 | }); |
| 742 | } else { |
| 743 | alert('Index out of bounds'); |
| 744 | } |
| 745 | } |
| 746 | |
| 747 | function selectTreeNodeStream (data) { |
| 748 | renderEjs('templates/editStream.ejs', data, $('#body'), function() { |
no test coverage detected