Commit 1989b667 authored by Phil Hughes's avatar Phil Hughes

Fixed JS issue with diff image loading

parent 090f2344
...@@ -119,8 +119,9 @@ class @ImageFile ...@@ -119,8 +119,9 @@ class @ImageFile
requestImageInfo: (img, callback) -> requestImageInfo: (img, callback) ->
domImg = img.get(0) domImg = img.get(0)
if domImg.complete if domImg
callback.call(this, domImg.naturalWidth, domImg.naturalHeight) if domImg.complete
else
img.on 'load', =>
callback.call(this, domImg.naturalWidth, domImg.naturalHeight) callback.call(this, domImg.naturalWidth, domImg.naturalHeight)
else
img.on 'load', =>
callback.call(this, domImg.naturalWidth, domImg.naturalHeight)
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment