diff options
Diffstat (limited to 'surf.c')
-rw-r--r-- | surf.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/surf.c b/surf.c index 9c9bae7..81ba9a5 100644 --- a/surf.c +++ b/surf.c @@ -178,6 +178,7 @@ static void find(Client *c, const Arg *a); /* Buttons */ static void clicknavigate(Client *c, const Arg *a, WebKitHitTestResult *h); static void clicknewwindow(Client *c, const Arg *a, WebKitHitTestResult *h); +static void clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h); static char winid[64]; static char togglestats[10]; @@ -1462,6 +1463,17 @@ clicknewwindow(Client *c, const Arg *a, WebKitHitTestResult *h) newwindow(c, &arg, a->b); } +void +clickexternplayer(Client *c, const Arg *a, WebKitHitTestResult *h) +{ + Arg arg; + + if (webkit_hit_test_result_get_context(h) & OnMedia) { + arg = (Arg)VIDEOPLAY(webkit_hit_test_result_get_media_uri(h)); + spawn(c, &arg); + } +} + int main(int argc, char *argv[]) { |