Navigation Menu

Skip to content

Commit

Permalink
Remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Duberstein committed Sep 13, 2019
1 parent b26a4a5 commit 247885f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/jupyter-widget/src/widget-tooltip.js
Expand Up @@ -37,15 +37,15 @@ function tabularize(json) {
if (EXCLUDES.has(key)) {
continue; // eslint-disable-line
}
const row = document.createElement('div');
const header = document.createElement('div');
header.className = 'header';
header.innerText = key;
const valueElement = document.createElement('div');
valueElement.className = 'value';

setInnerText(valueElement, json[key]);
// clip string length if too long

const row = document.createElement('div');

setStyles(row, header, valueElement);

Expand Down

0 comments on commit 247885f

Please sign in to comment.