Code review

This commit is contained in:
thororm 2017-05-20 16:11:32 +02:00
parent 39717707b3
commit b5c259dd72
3 changed files with 3 additions and 3 deletions

View file

@ -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());