|
|
|
|
@ -37,7 +37,8 @@
|
|
|
|
|
<input type="hidden" id="cursor" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="page-indicator"><span id="pageNow">2</span> of <span id="pageTotal">4</span></div>
|
|
|
|
|
<div class="page-indicator">
|
|
|
|
|
<span id="cursorCnt">0</span>of <span id="total">0</span></div>
|
|
|
|
|
<div class="nav-group">
|
|
|
|
|
<button type="button" class="nav-btn" name="navigate" data-act="first" id="first">◀◀</button>
|
|
|
|
|
<button type="button" class="nav-btn" name="navigate" data-act="prev">◀</button>
|
|
|
|
|
@ -278,6 +279,12 @@
|
|
|
|
|
;
|
|
|
|
|
thumbContainer.append(img);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//네비게이터 커서 카운트
|
|
|
|
|
$("#cursorCnt").text(mmCodes.indexOf(cursor) + 1);
|
|
|
|
|
$("#total").text(mmCodes.length);
|
|
|
|
|
|
|
|
|
|
},
|
|
|
|
|
error: function(xhr, status, error) {
|
|
|
|
|
$("#result").text("조회 실패");
|
|
|
|
|
|