Update to v0.1

This commit is contained in:
ServerKite
2014-02-11 12:44:19 +08:00
parent f12428b57b
commit 01d2a41ccd
105 changed files with 129894 additions and 0 deletions

View File

@@ -0,0 +1,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');
}