Skip to content

Commit

Permalink
docs(eda): update user guide's datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanzxc committed Apr 15, 2021
1 parent 3422522 commit 2428f98
Show file tree
Hide file tree
Showing 4 changed files with 3,165 additions and 1,137 deletions.
4 changes: 2 additions & 2 deletions dataprep/eda/create_report/templates/scripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@

window.onload = () => {
let tableRows = document.getElementsByTagName('tr');
hightlightTableValue(tableRows, '#f00');
highlightTableValue(tableRows, '#f00');
scientificNotationStrip(tableRows);
}

function hightlightTableValue(element, color) {
function highlightTableValue(element, color) {
for (let i of element) {
let thValue = i.firstElementChild.innerText;
let tbValue = i.lastElementChild.innerText;
Expand Down

0 comments on commit 2428f98

Please sign in to comment.