주소록 불러오기 팝압 각 그룹 카운팅 Ajax async 변경
- true -> false로 변경
This commit is contained in:
parent
6174b44242
commit
30d7aac973
@ -6,6 +6,9 @@
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function(){
|
||||
|
||||
var sTime = new Date();
|
||||
console.log("sTime ::: "+sTime);
|
||||
|
||||
// 주소록 그룹 카운트(전체)
|
||||
getAddrGroupTotCnt();
|
||||
|
||||
@ -15,6 +18,9 @@ $(document).ready(function(){
|
||||
//주소록 그룹 카운트(자주보내는 번호)
|
||||
getAddrGroupBookmarkCnt();
|
||||
|
||||
var lTime = new Date();
|
||||
console.log("lTime ::: "+lTime);
|
||||
|
||||
});
|
||||
|
||||
// 주소록 그룹 카운트(전체)
|
||||
@ -24,7 +30,7 @@ function getAddrGroupTotCnt() {
|
||||
url: "/web/addr/selectAddrGroupTotCntAjax.do",
|
||||
data: {},
|
||||
dataType:'json',
|
||||
async: true,
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
$("#addrTotCnt").html(numberWithCommas(data.addrTotCnt));
|
||||
@ -46,7 +52,7 @@ function getAddrGroupNogrpCnt() {
|
||||
url: "/web/addr/selectAddrGroupNogrpCntAjax.do",
|
||||
data: {},
|
||||
dataType:'json',
|
||||
async: true,
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
$("#nogrpCnt").html(data.nogrpCnt);
|
||||
@ -68,7 +74,7 @@ function getAddrGroupBookmarkCnt() {
|
||||
url: "/web/addr/selectAddrGroupBookmarkCntAjax.do",
|
||||
data: {},
|
||||
dataType:'json',
|
||||
async: true,
|
||||
async: false,
|
||||
success: function (data) {
|
||||
if (data.isSuccess) {
|
||||
$("#bookmarkCnt").html(data.bookmarkCnt);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user