Allow specifying 0 in the page selection dialog

This commit is contained in:
chylex 2018-09-19 16:14:11 +02:00
parent 4ca33c3b57
commit 6d1d95defb

View File

@ -202,7 +202,7 @@ var STATE = (function(){
case "pick":
var page = parseInt(prompt("Select page:", currentPage), 10);
if (!page){
if (!page && page !== 0){
return;
}