diff options
author | Louise Crow <louise.crow@gmail.com> | 2015-06-17 16:15:42 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2015-06-17 16:15:42 +0100 |
commit | 2cdd10d735cc68c56f369ec95031ead912d61b2a (patch) | |
tree | 970fd30fa37d8c888212bec742bbfe4d68fc4606 | |
parent | 73e1d9fd3c988315f8796d34ab2323f3210c0b0c (diff) |
Fix issue that was preventing preview from displaying properly.
-rw-r--r-- | app/views/user/set_crop_profile_photo.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/user/set_crop_profile_photo.html.erb b/app/views/user/set_crop_profile_photo.html.erb index 0a22d36dc..7aa8f61a4 100644 --- a/app/views/user/set_crop_profile_photo.html.erb +++ b/app/views/user/set_crop_profile_photo.html.erb @@ -18,7 +18,7 @@ </td> <td> <div style="width:96px;height:96px;overflow:hidden;"> - <img src="<%= get_draft_profile_photo_url(:id => @draft_profile_photo.id) %>" id="profile_photo_preview" /> + <img src="<%= get_draft_profile_photo_url(:id => @draft_profile_photo.id) %>" id="profile_photo_preview" class="jcrop-preview" /> </div> </td> |