Skip to content

Commit

Permalink
rebuilt compat table on gh-pages
Browse files Browse the repository at this point in the history
  • Loading branch information
zloirock committed Nov 25, 2022
1 parent 1cbb2b8 commit 3bd04fd
Show file tree
Hide file tree
Showing 3 changed files with 74 additions and 62 deletions.
6 changes: 5 additions & 1 deletion docs/compat/browsers-runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,11 @@ for (var key in tests) {

var tr = document.createElement('tr');
var td1 = document.createElement('td');
td1.innerHTML = key;
var a = document.createElement('a');
a.innerHTML = key;
a.href = "https://github.com/zloirock/core-js/blob/master/tests/compat/tests.js#:~:text='" + key.replace(/-/g, '%2D') + "'";
a.target = '_blank';
td1.appendChild(a);
td1.className = result;
tr.appendChild(td1);
var td2 = document.createElement('td');
Expand Down
Loading

0 comments on commit 3bd04fd

Please sign in to comment.