From 0e571efd35ca06e9061757ec9b46b236ded348b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ph=C3=BA?= Date: Sun, 8 Nov 2015 11:21:39 +0700 Subject: [PATCH 1/2] flow.js: fix `testChunks` in definition --- flowjs/flowjs.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flowjs/flowjs.d.ts b/flowjs/flowjs.d.ts index e9e90055b..186cd2579 100644 --- a/flowjs/flowjs.d.ts +++ b/flowjs/flowjs.d.ts @@ -44,7 +44,7 @@ declare module flowjs { uploadMethod?: string; allowDuplicateUploads?: boolean; prioritizeFirstAndLastChunk?: boolean; - testchunks?: boolean; + testChunks?: boolean; preprocess?: Function; initFileFn?: Function; generateUniqueIdentifier?: Function; From a3f2c72f889120e46c0bcd382190da2e77303207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ph=C3=BA?= Date: Sun, 8 Nov 2015 11:22:15 +0700 Subject: [PATCH 2/2] flow.js: fix `testChunks` in test --- flowjs/flowjs-tests.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flowjs/flowjs-tests.ts b/flowjs/flowjs-tests.ts index 8bedad003..b89625b48 100644 --- a/flowjs/flowjs-tests.ts +++ b/flowjs/flowjs-tests.ts @@ -41,7 +41,7 @@ flowOptions.testMethod = ""; flowOptions.uploadMethod = ""; flowOptions.allowDuplicateUploads = true; flowOptions.prioritizeFirstAndLastChunk = true; -flowOptions.testchunks = true; +flowOptions.testChunks = true; flowOptions.preprocess = () => {}; flowOptions.initFileFn = () => {}; flowOptions.generateUniqueIdentifier = () => {};