Commit e81df4d6 by doszhang

dos

parent 6ade245c
...@@ -110,13 +110,13 @@ function addCustomizeFlag() { ...@@ -110,13 +110,13 @@ function addCustomizeFlag() {
return false; return false;
} }
flagStack.push(text); flagStack.push(text);
$('.flag-page .choose-num').text(chooseNum + 1); $('.flag-page .choose-num').text((chooseNum++) + 1);
} }
function addFlag() { function addFlag() {
let text = $(this).find('.flag-text').text(); let text = $(this).find('.flag-text').text();
flagStack.push(text); flagStack.push(text);
$('.flag-page .choose-num').text(chooseNum + 1); $('.flag-page .choose-num').text((chooseNum++) + 1);
} }
function showFlagPage() { function showFlagPage() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment