mirror of
https://github.com/gitbucket/gitbucket.git
synced 2025-11-09 15:05:50 +01:00
38 lines
1.2 KiB
HTML
38 lines
1.2 KiB
HTML
@(content: String, commentId: Int, owner: String, repository: String)(implicit context: app.Context)
|
|
@import context._
|
|
<span id="error-edit-content-@commentId" class="error"></span>
|
|
@helper.html.attached(owner, repository){
|
|
<textarea style="width: 680px; height: 100px;" id="edit-content-@commentId">@content</textarea>
|
|
}
|
|
<div>
|
|
<input type="button" id="update-comment-@commentId" class="btn btn-small" value="Update Comment"/>
|
|
<input type="button" id="cancel-comment-@commentId" class="btn btn-small btn-danger pull-right" value="Cancel"/>
|
|
</div>
|
|
<script>
|
|
$(function(){
|
|
var callback = function(data){
|
|
$('#commentContent-@commentId').empty().html(data.content);
|
|
};
|
|
|
|
$('#update-comment-@commentId').click(function(){
|
|
$.ajax({
|
|
url: '@path/@owner/@repository/issue_comments/edit/@commentId',
|
|
type: 'POST',
|
|
data: {
|
|
issueId : 0, // TODO
|
|
content : $('#edit-content-@commentId').val()
|
|
}
|
|
}).done(
|
|
callback
|
|
).fail(function(req) {
|
|
$('#error-edit-content-@commentId').text($.parseJSON(req.responseText).content);
|
|
});
|
|
});
|
|
|
|
$('#cancel-comment-@commentId').click(function(){
|
|
$.get('@path/@owner/@repository/issue_comments/_data/@commentId', callback);
|
|
return false;
|
|
});
|
|
});
|
|
</script>
|