From: Enno Boland (tox) Date: Wed, 7 Oct 2009 13:00:20 +0000 (+0200) Subject: hooking onloadfunctions should be done by script.js. X-Git-Url: https://git.danieliu.xyz/?a=commitdiff_plain;h=04173f6661ab8a84df36e081c58402ac8ec5b902;p=surf.git hooking onloadfunctions should be done by script.js. --- diff --git a/surf.c b/surf.c index e40bfd0..3c2f572 100644 --- a/surf.c +++ b/surf.c @@ -699,9 +699,6 @@ windowobjectcleared(GtkWidget *w, WebKitWebFrame *frame, JSContextRef js, JSObje filename = g_build_filename(workdir, "script.js", NULL); if(g_file_get_contents(filename, &script, NULL, &error)) { - script = g_strdup_printf("window.addEventListener" - "('DOMContentLoaded', function () { %s }, true);", - script); jsscript = JSStringCreateWithUTF8CString (script); JSEvaluateScript (js, jsscript, JSContextGetGlobalObject(js), NULL, 0, &exception); }