source: branches/1.2/workflow/js/orgchart/main.js @ 1349

Revision 1349, 549 bytes checked in by niltonneto, 15 years ago (diff)

Ticket #561 - Inclusão do módulo Workflow faltante nessa versão.

  • Property svn:executable set to *
Line 
1var refreshAreas = new Array();
2var refreshEmployees = new Array();
3
4function init_orgchart(start_tab)
5{
6
7        if ((!is_gecko) && (!is_ie6up))
8        {
9                alert('OPSS !! Desculpe, mas seu navegador não suporta o Workflow.\nInstale o Mozilla FireFox 1.0+ ou Internet Explorer 6.0+.');
10        }
11        else
12        {
13                initBorders(1);
14                if (start_tab == null)
15                        start_tab = 0;
16
17                var main_body = document.getElementById("main_body");
18                main_body.style.display = '';
19                if (alternate_border(start_tab) == 0)
20                {
21                        createMenu();
22                        lb_initialize();
23                        listOrganizations();
24                }
25        }
26}
Note: See TracBrowser for help on using the repository browser.