I didn't have permission to post on the bug report form, so I decided to post here.
Problem: On the user page
http://domain.com/username
Whenever you press edit for any image, the image edit modal will open. once you change the title and save it, again you press edit button, the title is not changed yet unless you refresh the page.
Solution:
browse this file
/app/lib/chevereto.js
line 823
$("[name=form-image-title]", modal_source).attr("value", $list_item.data("title"));
change to
$("[name=form-image-title]", modal_source).attr("value", $list_item.attr("data-title"));
Problem: On the user page
http://domain.com/username
Whenever you press edit for any image, the image edit modal will open. once you change the title and save it, again you press edit button, the title is not changed yet unless you refresh the page.
Solution:
browse this file
/app/lib/chevereto.js
line 823
$("[name=form-image-title]", modal_source).attr("value", $list_item.data("title"));
change to
$("[name=form-image-title]", modal_source).attr("value", $list_item.attr("data-title"));