Files
EasySoft-ZenTaoPMS/module/admin/js/index.ui.js
T
2023-07-31 09:18:48 +00:00

18 lines
414 B
JavaScript

function redirectSetting(event)
{
const $target = $(event.target);
if($target.hasClass('icon-help')) return false;
const $box = $target.closest('.setting-box');
if($box.length == 0) return false;
openUrl($box.data('url'));
}
$(function()
{
/* Update patch, plugin, news, mooc from zentao.net. */
if(isAdminUser && hasInternet) $.get($.createLink('admin', 'ajaxSetZentaoData'));
});