Fix manga editing for sections other than 'Reading'

This commit is contained in:
Timothy Warren 2016-02-02 14:13:49 -05:00
parent d746de34ea
commit 93b885dc0d
2 changed files with 2 additions and 10 deletions

View File

@ -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' => [

View File

@ -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;