Fix Cancel button position in the comment editing form.

This commit is contained in:
takezoe
2014-01-18 01:52:59 +09:00
parent ccc1e9bc8b
commit c92891538e

View File

@@ -2,15 +2,17 @@
@import context._ @import context._
<span id="error-edit-content-@commentId" class="error"></span> <span id="error-edit-content-@commentId" class="error"></span>
<textarea style="width: 680px; height: 100px;" id="edit-content-@commentId">@content</textarea> <textarea style="width: 680px; height: 100px;" id="edit-content-@commentId">@content</textarea>
<input type="button" class="btn btn-small" value="Update Comment"/> <div>
<span class="pull-right"><a class="btn btn-small btn-danger" href="#">Cancel</a></span> <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> <script>
$(function(){ $(function(){
var callback = function(data){ var callback = function(data){
$('#commentContent-@commentId').empty().html(data.content); $('#commentContent-@commentId').empty().html(data.content);
}; };
$('#commentContent-@commentId input.btn').click(function(){ $('#update-comment-@commentId').click(function(){
$.ajax({ $.ajax({
url: '@path/@owner/@repository/issue_comments/edit/@commentId', url: '@path/@owner/@repository/issue_comments/edit/@commentId',
type: 'POST', type: 'POST',
@@ -25,7 +27,7 @@ $(function(){
}); });
}); });
$('#commentContent-@commentId a.btn').click(function(){ $('#cancel-comment-@commentId').click(function(){
$.get('@path/@owner/@repository/issue_comments/_data/@commentId', callback); $.get('@path/@owner/@repository/issue_comments/_data/@commentId', callback);
return false; return false;
}); });