Table: fix table column show-overflow-tooltip bug

Table: fix table column show-overflow-tooltip bug, low version Firefox without innerText, add textContent
pull/8304/head
Ryan.xu 2017-11-15 12:27:04 +08:00 committed by 杨奕
parent c7d3de95b0
commit 292ad8efec
1 changed files with 1 additions and 1 deletions

View File

@ -343,7 +343,7 @@ export default {
if (hasClass(cellChild, 'el-tooltip') && cellChild.scrollWidth > cellChild.offsetWidth && this.$refs.tooltip) {
const tooltip = this.$refs.tooltip;
this.tooltipContent = cell.innerText;
this.tooltipContent = cell.textContent || cell.innerText;
tooltip.referenceElm = cell;
tooltip.$refs.popper && (tooltip.$refs.popper.style.display = 'none');
tooltip.doDestroy();