summaryrefslogtreecommitdiffstats
path: root/platform/javascript/http_request.js
Commit message (Collapse)AuthorAgeFilesLines
* Fix Closure compiler build, python style.Fabio Alessandrelli2020-05-101-146/+0
| | | | Move copyToFS into utils.js library included with '--pre-js'.
* Fix some URLs to use HTTPS when availableRémi Verschelde2020-01-291-1/+2
|
* Update copyright statements to 2020Rémi Verschelde2020-01-011-1/+1
| | | | | | | | | | | Happy new year to the wonderful Godot community! We're starting a new decade with a well-established, non-profit, free and open source game engine, and tons of further improvements in the pipeline from hundreds of contributors. Godot will keep getting better, and we're looking forward to all the games that the community will keep developing and releasing with it.
* Use stdout/-err for all messages in HTML5 platformLeon Krause2019-02-241-3/+3
|
* Update copyright statements to 2019Rémi Verschelde2019-01-011-1/+1
| | | | Happy new year to the wonderful Godot community!
* use console.warn instead of Module.printErr: emscripten no longer exports ↵Alon Zakai (kripken)2018-08-111-3/+3
| | | | printErr by default, and instead err() should be used in code seen by the optimizer; however, as Godot only runs on the Web (and not in node.js or elsewhere), using console.warn directly is good enough, and will work in all versions if emscripten
* Update copyright statements to 2018Rémi Verschelde2018-01-011-1/+1
| | | | Happy new year to the wonderful Godot community!
* Implement HTTPClient in HTML5 platformLeon Krause2017-11-131-0/+145
Limitations: - Subject to same-origin policy - No persistent connection (but simulated for compatibility) - No blocking mode - No StreamPeer access - No chunked responses - Cannot disable host verification