]> git.mxchange.org Git - quix0rs-gnu-social.git/commit
All the AJAX calls should be made with $.ajax
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 8 Mar 2015 00:34:40 +0000 (01:34 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 8 Mar 2015 00:36:59 +0000 (01:36 +0100)
commit3c5383b11c2ea99b64c395a9703def8db0426b8d
treec2ba208c1ecb23bbe95c0c2fe30781cd11a4a51f
parent77190c9a87f36f6dfc3fd878ca5c568c7c2d1b79
All the AJAX calls should be made with $.ajax

because we're gonna want to expect application/xml or text/xml back.

There's a weird thing in Firefox where the call on line ~703 makes the
web developer console output "not well formed" which is for the returned
data. It is assumed to be text/xml - which it is - but the doctype says
"html" (because it is first <?xml..?> followed by <!DOCTYPE html ...->

This doesn't cause any malfunction right now, just the output in the
console. I'm not exactly sure how to fix it. Probably remove the DOCTYPE
output for AJAX calls, but I'm not sure that's the best way. Could this
maybe even be a browser/javascript/whatever bug? Because the Content-Type
from the server _is_ right...
js/util.js