mirror of
https://github.com/kokororin/typecho-plugin-Access.git
synced 2026-08-19 10:23:27 +08:00
14 lines
263 B
JavaScript
14 lines
263 B
JavaScript
$().ready(function () {
|
|
$.ajax({
|
|
url: "/access/migration",
|
|
method: "get",
|
|
dataType: "json",
|
|
data: { rpc: 'overview' },
|
|
success: function (res) {
|
|
if (res.data.total > 0) {
|
|
$('#migration-tab-li').show();
|
|
}
|
|
},
|
|
});
|
|
});
|