mention new features
This commit is contained in:
parent
a45e27038f
commit
6883c5b6b9
|
@ -2,6 +2,10 @@ changelog
|
||||||
|
|
||||||
=== next
|
=== next
|
||||||
|
|
||||||
|
+ Emu peeker
|
||||||
|
|
||||||
|
+ CSP compliance
|
||||||
|
|
||||||
+ Filter to match anything with summary/warning.
|
+ Filter to match anything with summary/warning.
|
||||||
|
|
||||||
+ Start collecting quties.
|
+ Start collecting quties.
|
||||||
|
|
|
@ -5,12 +5,12 @@ var tophid = { }
|
||||||
var servermsgs = { }
|
var servermsgs = { }
|
||||||
|
|
||||||
function encode(hash) {
|
function encode(hash) {
|
||||||
var s = []
|
var s = []
|
||||||
for (var key in hash) {
|
for (var key in hash) {
|
||||||
var val = hash[key]
|
var val = hash[key]
|
||||||
s.push(encodeURIComponent(key) + "=" + encodeURIComponent(val))
|
s.push(encodeURIComponent(key) + "=" + encodeURIComponent(val))
|
||||||
}
|
}
|
||||||
return s.join("&")
|
return s.join("&")
|
||||||
}
|
}
|
||||||
function post(url, data) {
|
function post(url, data) {
|
||||||
var x = new XMLHttpRequest()
|
var x = new XMLHttpRequest()
|
||||||
|
|
Loading…
Reference in New Issue