12 lines
473 B
JavaScript
12 lines
473 B
JavaScript
if(showFeature)
|
|
{
|
|
/* Show features dialog. */
|
|
new $.zui.ModalTrigger({url: $.createLink('zahost', 'introduction'), type: 'iframe', width: 900, className: 'showFeatures', showHeader: false, backdrop: 'static'}).show();
|
|
}
|
|
|
|
$('#helpTab').click(function()
|
|
{
|
|
/* Show features dialog. */
|
|
new $.zui.ModalTrigger({url: $.createLink('zahost', 'introduction'), type: 'iframe', width: 900, className: 'showFeatures', showHeader: false, backdrop: 'static'}).show();
|
|
})
|