mirror of
https://github.com/PrivateBin/PrivateBin.git
synced 2025-08-01 19:16:13 -04:00
Code review
This commit is contained in:
parent
39717707b3
commit
b5c259dd72
3 changed files with 3 additions and 3 deletions
|
@ -2334,7 +2334,7 @@ jQuery.PrivateBin = function($, sjcl, Base64, RawDeflate) {
|
|||
function (event) {
|
||||
var items = (event.clipboardData || event.originalEvent.clipboardData).items;
|
||||
for (var i in items) {
|
||||
if ({}.hasOwnProperty.call(items, i)) {
|
||||
if (items.hasOwnProperty(i)) {
|
||||
var item = items[i];
|
||||
if (item.kind === 'file') {
|
||||
me.readFileData(item.getAsFile());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue