mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-26 13:01:08 -05:00
display errs
This commit is contained in:
parent
ec887e5ca5
commit
3ad89358da
@ -236,7 +236,11 @@ ST.filereader = function() {
|
|||||||
var words = CryptoJS.enc.Base64.parse(e.target.result.split(',')[1]);
|
var words = CryptoJS.enc.Base64.parse(e.target.result.split(',')[1]);
|
||||||
var utf8 = CryptoJS.enc.Utf8.stringify(words);
|
var utf8 = CryptoJS.enc.Utf8.stringify(words);
|
||||||
$('#code').val(utf8);
|
$('#code').val(utf8);
|
||||||
} catch (undefined) {};
|
} catch (err) {
|
||||||
|
console.error(err);
|
||||||
|
console.info('event: ', e);
|
||||||
|
console.info('file: ', file);
|
||||||
|
};
|
||||||
},
|
},
|
||||||
abort: function(e, file) { /* Native ProgressEvent */ },
|
abort: function(e, file) { /* Native ProgressEvent */ },
|
||||||
skip: function(e, file) {
|
skip: function(e, file) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user