1
0
포크 0
의 미러 https://git.sr.ht/~cadence/bibliogram synced 2026-04-16 08:31:37 +00:00

Remove console logs

This commit is contained in:
Cadence Ember 2020-06-19 20:01:43 +12:00
부모 719399f54b
커밋 e4e190f97e
No known key found for this signature in database
GPG 키 ID: 128B99B1B74A6412

파일 보기

@ -48,12 +48,10 @@ class GMResponse {
}
function gmFetch(url, options = {}) {
console.log("Making request")
return new Promise((resolve, reject) => {
options.url = url
if (!options.method) options.method = "GET"
options.onload = response => {
console.log("Got response", response)
resolve(new GMResponse(response))
}
options.onerror = response => {