(curEl)
| 715 | }; |
| 716 | |
| 717 | let _updateStatusBarSelectionInfo = function(curEl) { |
| 718 | let info = _getSelectionInfo(curEl); |
| 719 | let meta = (info.type || 'node') + (info.preview ? ' / ' + info.preview : ''); |
| 720 | $('#jsonSelectionMeta') |
| 721 | .text(meta) |
| 722 | .attr('title', meta); |
| 723 | }; |
| 724 | |
| 725 | // 格式化JSON路径为不同编程语言格式 |
| 726 | let _formatJsonPath = function(keys, language) { |
no test coverage detected