");$(".content-detail video").removeAttr("style").addClass("video-js").css("width","100%").css("height","auto").css("aspect-ratio","16/9");});videojs(document.querySelector('.video-js'),{controls:true,autoplay:false,preload:'auto'});function deleteComment(id){if(confirm("Bạn có chắc chắn xóa bình luận này không?")){$.post("/Home/DeleteComment",{commentId:id},function(data){if(data==="True"){alert("Xóa bình luận thành công");$("div[data-comment='"+id+"']").fadeOut();} else{alert("Quá trình thực hiện không thành công");}});}} function adminDeleteComment(id){if(confirm("Bạn có chắc chắn xóa bình luận này không?")){$.post("/Vcms/DeleteComment",{commentId:id},function(data){if(data==="True"){alert("Xóa bình luận thành công");$("div[data-comment='"+id+"']").fadeOut();} else{alert("Quá trình thực hiện không thành công");}});}} $(document).on("click","#contentPager a[href]",function(){$.ajax({url:$(this).attr("href"),type:'GET',cache:false,success:function(result){$('#comment-list').html(result);var t=$('#comment-list').position().top;$('html,body').stop().animate({scrollTop:t});}});return false;});$("#formComment").on("submit",function(e){var id=$("#formComment input[name='ArticleId']").val();var url="/Home/GetComment/"+id;e.preventDefault();$.post("/Home/QuickComment",$(this).serialize(),function(data){if(data.status){$.toast({heading:'Bình luận thành công',text:data.msg,icon:'success'});$("#formComment").trigger("reset");$.ajax({url:url,type:'GET',cache:false,success:function(result){$('#comment-list').html(result);var t=$('#comment-list').position().top;$('html,body').stop().animate({scrollTop:t});}});}else{$.toast({heading:'Bình luận không thành công',text:data.msg,icon:'error'});}});});