fixed bad merge

This commit is contained in:
Danny Coates 2017-08-10 12:59:07 -07:00
parent 0c26204ea1
commit 1ad7edf5a9
No known key found for this signature in database
GPG Key ID: 4C442633C62E00CB
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import * as metrics from './metrics';
import * as progress from './progress';
import $ from 'jquery';
const storage = new Storage(localStorage);
const storage = new Storage();
function onUnload(size) {
metrics.cancelledDownload({ size });
}

View File

@ -13,7 +13,7 @@ import * as metrics from './metrics';
import * as progress from './progress';
import $ from 'jquery';
const storage = new Storage(localStorage);
const storage = new Storage();
const allowedCopy = () => {
const support = !!document.queryCommandSupported;