1de0ea28b9
added width and height below images in diff
25 lines
910 B
Text
25 lines
910 B
Text
= render "commits/commit_box"
|
|
= render "commits/diffs", diffs: @commit.diffs
|
|
= render "notes/notes_with_form", tid: @commit.id, tt: "commit"
|
|
= render "notes/per_line_form"
|
|
|
|
|
|
:javascript
|
|
$(function(){
|
|
PerLineNotes.init();
|
|
var w, h;
|
|
$('.diff_file').each(function(){
|
|
$('.image.diff_removed img', this).on('load', $.proxy(function(event){
|
|
var w = event.currentTarget.naturalWidth
|
|
, h = event.currentTarget.naturalHeight;
|
|
$('.image.diff_removed .image-info', this).append(' | <b>W:</b> ' + w + 'px | <b>H:</b> ' + h + 'px');
|
|
}, this));
|
|
$('.image.diff_added img', this).on('load', $.proxy(function(event){
|
|
var w = event.currentTarget.naturalWidth
|
|
, h = event.currentTarget.naturalHeight;
|
|
$('.image.diff_added .image-info', this).append(' | <b>W:</b> ' + w + 'px | <b>H:</b> ' + h + 'px');
|
|
}, this));
|
|
|
|
});
|
|
|
|
});
|