mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-19 11:19:56 +09:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
jQuery(function($){
|
|
$('.__sync').click(function (){
|
|
exec_xml(
|
|
'importer', // module
|
|
'procImporterAdminSync', // act
|
|
null,
|
|
function(ret){if(ret && (!ret.error || ret.error == '0'))alert(ret.message);}, // callback
|
|
resp = ['error','message'] // response tags
|
|
);
|
|
});
|
|
});
|