summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-10-23 09:54:52 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-10-23 07:07:17 -0700
commit5cf37c2f2018d51dd4d6498035c385f8ed0bf58f (patch)
tree8399dd030cf6fb172980d3b2c65bcf82d62b1168 /website
parentdd230d520b5599c0e51cf30245a567f07b3cfb28 (diff)
Revert "Support CheckJS"
Broken in master. This reverts commit dd230d520b5599c0e51cf30245a567f07b3cfb28.
Diffstat (limited to 'website')
-rw-r--r--website/app.js4
1 files changed, 0 insertions, 4 deletions
diff --git a/website/app.js b/website/app.js
index 74d97b41c..b0ac3482b 100644
--- a/website/app.js
+++ b/website/app.js
@@ -154,12 +154,10 @@ function gen2(
};
}
- // @ts-ignore
c3.generate({
bindto: id,
size: {
height: 300,
- // @ts-ignore
width: window.chartWidth || 375 // TODO: do not use global variable
},
data: {
@@ -203,7 +201,6 @@ export async function drawChartsFromBenchmarkData(dataUrl) {
const sha1ShortList = sha1List.map(sha1 => sha1.substring(0, 6));
const viewCommitOnClick = _sha1List => d => {
- // @ts-ignore
window.open(
`https://github.com/denoland/deno/commit/${_sha1List[d["index"]]}`
);
@@ -233,7 +230,6 @@ export async function drawChartsFromBenchmarkData(dataUrl) {
*/
export async function drawChartsFromTravisData() {
const viewPullRequestOnClick = _prNumberList => d => {
- // @ts-ignore
window.open(
`https://github.com/denoland/deno/pull/${_prNumberList[d["index"]]}`
);