File tree Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Expand file tree Collapse file tree 3 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,8 @@ public IActionResult Index()
4444 }
4545 }
4646
47+
48+
4749 [ Route ( "/TermsOfService" ,
4850 Name = "TermsOfService" ) ]
4951 public IActionResult TermsOfService ( )
Original file line number Diff line number Diff line change 125125 <span v-cloak >{{ chapterParentPage .title }} </span >
126126 </a >
127127 <div class =" menu-chapter-title text-light" >
128- {{ currentPageCount }} / {{ totalPageCount }}
128+ <form
129+ <span v-cloak >{{ currentPageCount }} / {{ totalPageCount }} </span >
129130 </div >
130131
131132 <div class =" d-flex align-items-center" >
274275 }
275276 CURRENT_PAGE_COUNT = @Json .Serialize (currentPageCount)
276277 TOTAL_PAGE_COUNT = @Json .Serialize (overallCount)
278+ KEY_LIST = @Json .Serialize (keyList)
277279 PREVIOUS_PAGE = @Json .Serialize (ViewBag .PreviousPage )
278280 NEXT_PAGE = @Json .Serialize (ViewBag .NextPage )
279281 TOC_DATA = @Json .Serialize (tocData)
Original file line number Diff line number Diff line change @@ -213,6 +213,7 @@ const app = createApp({
213213
214214 const currentPageCount = CURRENT_PAGE_COUNT ;
215215 const totalPageCount = TOTAL_PAGE_COUNT ;
216+ const keyList = KEY_LIST
216217
217218 const chapterParentPage = currentPage . find ( ( parent ) => parent . level === 0 ) ;
218219
@@ -340,6 +341,7 @@ const app = createApp({
340341 currentPage,
341342 currentPageCount,
342343 totalPageCount,
344+ keyList,
343345 chapterParentPage,
344346
345347 searchQuery,
You can’t perform that action at this time.
0 commit comments