20 lines
654 B
JavaScript
20 lines
654 B
JavaScript
$('#hostList tr[data-status="wait"]').hover(function(){
|
|
$(this).find('.init').tooltip('toggle');
|
|
},function(){
|
|
$(this).find('.init').tooltip('hide');
|
|
});
|
|
|
|
if(showFeature)
|
|
{
|
|
var encodedHelpPageUrl = encodeURIComponent('https://www.zentao.net/book/zentaopms/978.html?fullScreen=zentao');
|
|
var urlForNewTab = webRoot + '#app=help&url=' + encodedHelpPageUrl;
|
|
window.open(urlForNewTab)
|
|
}
|
|
|
|
$('#helpTab').click(function()
|
|
{
|
|
var encodedHelpPageUrl = encodeURIComponent('https://www.zentao.net/book/zentaopms/978.html?fullScreen=zentao');
|
|
var urlForNewTab = webRoot + '#app=help&url=' + encodedHelpPageUrl;
|
|
window.open(urlForNewTab)
|
|
})
|