mirror of
https://github.com/rkd77/elinks.git
synced 2024-11-04 08:17:17 -05:00
[quickjs] Define window properties and functions in global object.
window.alert and alert both are functional
This commit is contained in:
parent
30dd9935d2
commit
aca8b1f7cd
@ -417,23 +417,13 @@ fail:
|
|||||||
int
|
int
|
||||||
js_window_init(JSContext *ctx)
|
js_window_init(JSContext *ctx)
|
||||||
{
|
{
|
||||||
JSValue window_proto, window_class;
|
|
||||||
|
|
||||||
/* create the window class */
|
/* create the window class */
|
||||||
JS_NewClassID(&js_window_class_id);
|
JS_NewClassID(&js_window_class_id);
|
||||||
JS_NewClass(JS_GetRuntime(ctx), js_window_class_id, &js_window_class);
|
JS_NewClass(JS_GetRuntime(ctx), js_window_class_id, &js_window_class);
|
||||||
|
|
||||||
JSValue global_obj = JS_GetGlobalObject(ctx);
|
JSValue global_obj = JS_GetGlobalObject(ctx);
|
||||||
|
JS_SetPropertyFunctionList(ctx, global_obj, js_window_proto_funcs, countof(js_window_proto_funcs));
|
||||||
window_proto = JS_NewObject(ctx);
|
JS_SetPropertyStr(ctx, global_obj, "window", global_obj);
|
||||||
JS_SetPropertyFunctionList(ctx, window_proto, js_window_proto_funcs, countof(js_window_proto_funcs));
|
|
||||||
|
|
||||||
window_class = JS_NewCFunction2(ctx, js_window_ctor, "window", 0, JS_CFUNC_constructor, 0);
|
|
||||||
/* set proto.constructor and ctor.prototype */
|
|
||||||
JS_SetConstructor(ctx, window_class, window_proto);
|
|
||||||
JS_SetClassProto(ctx, js_window_class_id, window_proto);
|
|
||||||
|
|
||||||
JS_SetPropertyStr(ctx, global_obj, "window", window_proto);
|
|
||||||
|
|
||||||
JS_FreeValue(ctx, global_obj);
|
JS_FreeValue(ctx, global_obj);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user