Fix lint errors
This commit is contained in:
@@ -23,7 +23,6 @@ define([
|
|||||||
var $form = $iframe.find('#upload-form');
|
var $form = $iframe.find('#upload-form');
|
||||||
var $dlform = $iframe.find('#download-form');
|
var $dlform = $iframe.find('#download-form');
|
||||||
var $label = $form.find('label');
|
var $label = $form.find('label');
|
||||||
var $dllabel = $dlform.find('label');
|
|
||||||
var $table = $iframe.find('#status');
|
var $table = $iframe.find('#status');
|
||||||
var $progress = $iframe.find('#progress');
|
var $progress = $iframe.find('#progress');
|
||||||
|
|
||||||
@@ -252,7 +251,7 @@ define([
|
|||||||
if (!uploadMode) {
|
if (!uploadMode) {
|
||||||
$dlform.show();
|
$dlform.show();
|
||||||
Cryptpad.removeLoadingScreen();
|
Cryptpad.removeLoadingScreen();
|
||||||
$dlform.find('#dl').click(function (e) {
|
$dlform.find('#dl').click(function () {
|
||||||
if (myFile) { return void exportFile(); }
|
if (myFile) { return void exportFile(); }
|
||||||
|
|
||||||
var src = Cryptpad.getBlobPathFromHex(hexFileName);
|
var src = Cryptpad.getBlobPathFromHex(hexFileName);
|
||||||
@@ -268,7 +267,7 @@ define([
|
|||||||
return void Cryptpad.errorLoadingScreen(e);
|
return void Cryptpad.errorLoadingScreen(e);
|
||||||
}
|
}
|
||||||
|
|
||||||
return console.error(FileCrypto.decryptMetadata(u8, key));
|
// return console.error(FileCrypto.decryptMetadata(u8, key));
|
||||||
FileCrypto.decrypt(u8, key, function (e, data) {
|
FileCrypto.decrypt(u8, key, function (e, data) {
|
||||||
if (e) {
|
if (e) {
|
||||||
return console.error(e);
|
return console.error(e);
|
||||||
|
|||||||
Reference in New Issue
Block a user