Skip to content

Commit 178e76b

Browse files
add page count in Take A Tour Section
1 parent 2d7a34f commit 178e76b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/widgets/help.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -326,7 +326,7 @@ class HelpWidget {
326326
const helpBody = docById("helpBodyDiv");
327327
helpBody.innerHTML = "" ;
328328
const totalPages = HELPCONTENT.length;
329-
const pageCount = `Page ${page + 1} of ${totalPages}`;
329+
const pageCount = `${page + 1}/${totalPages}`;
330330

331331
// Previous HTML content is removed, and new one is generated.
332332
let body = "";

0 commit comments

Comments
 (0)