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,13 @@
function floodprotection_change() {
var protection = document.getElementById('floodprotection_checkbox');
var rate = document.getElementById('floodrate');
var burst = document.getElementById('floodburst');
if (protection.checked) {
rate.removeAttribute('disabled');
burst.removeAttribute('disabled');
} else {
rate.disabled = 'disabled';
burst.disabled = 'disabled';
}
}