...
|
...
|
@@ -33,14 +33,12 @@ $('.editorial-index-page').on('click', '.like-icon', function() { |
|
|
}).then(function(data) {
|
|
|
if (data.code === 200) {
|
|
|
$this.next('b').html(data.data);
|
|
|
$this.toggleClass('liked');
|
|
|
$this.parent('.like-comment').toggleClass('liked');
|
|
|
} else {
|
|
|
new _alert(data.message).show();
|
|
|
}
|
|
|
|
|
|
});
|
|
|
}).on('mouseenter mouseleave', '.like-icon', function() {
|
|
|
$(this).closest('.like').toggleClass('hover');
|
|
|
});
|
|
|
|
|
|
$('.msg-title').each(function() {
|
...
|
...
|
|