Version 5.1 - All the GraphQL #32
@ -80,14 +80,6 @@ return [
|
||||
'action' => 'add',
|
||||
'verb' => 'post'
|
||||
],
|
||||
'manga_edit_form' => [
|
||||
'path' => '/manga/edit/{id}{status}',
|
||||
'action' => 'edit',
|
||||
'tokens' => [
|
||||
'id' => '[0-9a-z_]+',
|
||||
'status' => '[a-zA-z\- ]+',
|
||||
]
|
||||
],
|
||||
// ---------------------------------------------------------------------
|
||||
// Anime Collection Routes
|
||||
// ---------------------------------------------------------------------
|
||||
@ -162,7 +154,7 @@ return [
|
||||
'action' => 'edit',
|
||||
'tokens' => [
|
||||
'id' => '[0-9a-z_]+',
|
||||
'status' => '[a-zA-z\- ]+',
|
||||
'status' => '([a-zA-Z\- ]|%20)+',
|
||||
]
|
||||
],
|
||||
'list' => [
|
||||
|
@ -12,7 +12,7 @@
|
||||
let type = this_sel.is(".plus_one_chapter") ? 'chapter' : 'volume';
|
||||
let completed = parseInt(parent_sel.find(`.${type}s_read`).text(), 10);
|
||||
let total = parseInt(parent_sel.find(`.${type}_count`).text(), 10);
|
||||
let manga_name = parent_sel.find('.name').html();
|
||||
let manga_name = parent_sel.find('.name').text();
|
||||
|
||||
if (isNaN(completed)) {
|
||||
completed = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user