PABX da Simples IP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

23 lines
787 B

// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax
var MENU_ITEMS = [
['Sistema', null, null,
['Usuários', null, null],
['Trocar Senha', null, null],
['Sair', 'index.php?idProg=-1'],
],
['Cadastro', null, null],
['Relatório', null, null,
['Traditional Blue', '../demo1/index.html'],
['White Steps', '../demo2/index.html'],
['Inner HTML', '../demo3/index.html'],
['All Together', '../demo4/index.html'],
['Frames Targeting', '../demo5/index.html'],
['Accessing IDs', '../demo6/index.html']
],
['Ajuda', null]
];