Skip to content

Commit

Permalink
Use correct class members for imageWidth and imageHeight, fixes #518
Browse files Browse the repository at this point in the history
  • Loading branch information
Timo A. Hummel committed Jan 2, 2016
1 parent 03b109a commit 65f6234
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Ext.define('PartKeepr.RemoteImageField', {

if (value !== null) {
this.image.setSrc(
value.getId() + "/getImage?maxWidth=" + this.imageWidth + "&maxHeight=" + this.imageHeight + "&ts=" + new Date().getTime());
value.getId() + "/getImage?maxWidth=" + this.maxWidth + "&maxHeight=" + this.maxHeight + "&ts=" + new Date().getTime());
} else {
this.image.setSrc("");
}
Expand Down

0 comments on commit 65f6234

Please sign in to comment.