mirror of
https://github.com/gnh1201/welsonjs.git
synced 2025-02-06 06:54:58 +00:00
updated
This commit is contained in:
parent
def7cff4be
commit
39404cb19d
BIN
app/assets/img/x-mark-24.png
Normal file
BIN
app/assets/img/x-mark-24.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 452 B |
|
@ -26,8 +26,9 @@ $(document).ready(function() {
|
|||
}
|
||||
}
|
||||
},
|
||||
error: function() {
|
||||
console.log("잠시 후 다시 시도하여 주세요");
|
||||
error: function(xhr, status, error) {
|
||||
var errorMessage = xhr.status + ': ' + xhr.statusText;
|
||||
alert('Error - ' + errorMessage);
|
||||
}
|
||||
});
|
||||
|
||||
|
@ -49,6 +50,11 @@ $(document).ready(function() {
|
|||
});
|
||||
}
|
||||
|
||||
// 닫기
|
||||
$("a[href='#exit']").click(function() {
|
||||
exit();
|
||||
});
|
||||
|
||||
// 로그아웃
|
||||
$("#btn_logout").click(function() {
|
||||
// 토큰 파일 삭제
|
||||
|
|
|
@ -13,7 +13,7 @@ var LIB = require('lib/std');
|
|||
/////////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
var scope = {
|
||||
VERSIONINFO: "File Lib (file-libs.js) version 0.1",
|
||||
VERSIONINFO: "File Lib (file.js) version 0.2",
|
||||
global: global,
|
||||
require: global.require
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue
Block a user