File: select.js

package info (click to toggle)
znc 1.10.1-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 12,164 kB
  • sloc: cpp: 58,072; javascript: 11,859; python: 1,635; perl: 1,229; tcl: 219; sh: 200; ansic: 187; makefile: 82
file content (11 lines) | stat: -rw-r--r-- 386 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
function updateUser() {
	var select = document.getElementById('selectnetwork');
	var opt = select.options[select.selectedIndex];
	document.getElementById('user').value = opt.parentNode.getAttribute('label');
}

function init() {
	updateUser();
	document.getElementById('networklabel').firstChild.nodeValue = 'Network:';
	document.getElementById('userblock').removeAttribute('style');
}