1
0
mirror of https://github.com/rkd77/elinks.git synced 2025-02-02 15:09:23 -05:00

[mujs] default for readyState

This commit is contained in:
Witold Filipczyk 2024-12-02 17:28:55 +01:00
parent 928380aa5f
commit fb5a72dfd8

View File

@ -601,6 +601,7 @@ mjs_document_get_property_readyState(js_State *J)
return;
}
switch (doc_private->state) {
default:
case LOADING:
js_pushstring(J, "loading");
break;