Merge pull request #281 from shikorism/fix/279-unauthorized-ajax-call
非ログイン状態でいいねしようとした時にログインを促す
This commit is contained in:
5
resources/assets/js/app.js
vendored
5
resources/assets/js/app.js
vendored
@@ -85,6 +85,9 @@ $(() => {
|
||||
if (xhr.status === 409) {
|
||||
callback(JSON.parse(xhr.responseText));
|
||||
return;
|
||||
} else if (xhr.status === 401) {
|
||||
alert('いいねするためにはログインしてください。');
|
||||
return;
|
||||
}
|
||||
|
||||
console.error(xhr);
|
||||
@@ -98,4 +101,4 @@ $(() => {
|
||||
$this.siblings(".card-link").removeClass("card-spoiler");
|
||||
$this.remove();
|
||||
});
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user