window.renderCell = function(result, {col, row})
{
if(col.name === 'star')
{
result[0] = {html:'' + row.data.star_count + '' + row.data.forks_count + '', style:{flexDirection:"column"}};
return result;
}
return result;
};
window.searchProject = function()
{
loadPage({method:'post', data: {keyword: $('#keyword').val()}, target: '#table-gitlab-browseproject>*'});
}