mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-09 12:02:24 +09:00
Comment list unpublish function bug fix.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12492 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
a7ac9769b5
commit
c1e3a4ef5d
1 changed files with 3 additions and 3 deletions
|
|
@ -185,11 +185,11 @@ jQuery(function($){
|
||||||
var thisName = $this.attr('data-name');
|
var thisName = $this.attr('data-name');
|
||||||
var thisText = $this.text();
|
var thisText = $this.text();
|
||||||
getCommentList();
|
getCommentList();
|
||||||
$('#listManager').find('.x_modal-header ._sub').text(thisText).end().find('[type="submit"]').val(thisValue).attr('name', thisName).text(thisText);
|
$('#listManager').find('.x_modal-header ._sub').text(thisText).end().find('[type="submit"]:eq(0)').val(thisValue).attr('name', thisName).text(thisText);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
$('[type="submit"][name="will_publish"]').click(function(){
|
$('.x_modal-footer').on("click", '[type="submit"][name="will_publish"]', function(){
|
||||||
doChangePublishedStatus(this.value);
|
doChangePublishedStatus($(this).val());
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
Loading…
Add table
Add a link
Reference in a new issue