From febe3a01cd5db03d152e993d42f39800e494a83a Mon Sep 17 00:00:00 2001 From: Harrison Healey Date: Mon, 18 Jul 2016 11:54:42 -0400 Subject: [PATCH] Fixed use of deprecated function (#3615) --- webapp/components/file_attachment.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webapp/components/file_attachment.jsx b/webapp/components/file_attachment.jsx index a3dd7ff1d8..b6d535b84a 100644 --- a/webapp/components/file_attachment.jsx +++ b/webapp/components/file_attachment.jsx @@ -49,7 +49,7 @@ class FileAttachment extends React.Component { if (type === 'image') { var self = this; // Need this reference since we use the given "this" - $('').attr('src', fileInfo.path + '_thumb.jpg').load(function loadWrapper(path, name) { + $('').attr('src', fileInfo.path + '_thumb.jpg').on('load', (function loadWrapper(path, name) { return function loader() { $(this).remove(); if (name in self.refs) { @@ -71,7 +71,7 @@ class FileAttachment extends React.Component { self.addBackgroundImage(name, path); } }; - }(fileInfo.path, filename)); + }(fileInfo.path, filename))); } } }