diff options
author | Mario Vavti <mario@mariovavti.com> | 2017-11-29 11:26:33 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-11-29 11:26:33 +0100 |
commit | bc0f4b4fa5dc80f314eb72256c17051b66ba3979 (patch) | |
tree | 1f288246287b7b21668181dfc890f007da7a4655 /view | |
parent | e6a59ad36fcdbe4dcb534ff700663d9588b5d734 (diff) | |
download | volse-hubzilla-bc0f4b4fa5dc80f314eb72256c17051b66ba3979.tar.gz volse-hubzilla-bc0f4b4fa5dc80f314eb72256c17051b66ba3979.tar.bz2 volse-hubzilla-bc0f4b4fa5dc80f314eb72256c17051b66ba3979.zip |
an additional on touch event might improve things for mobile handling
Diffstat (limited to 'view')
-rw-r--r-- | view/tpl/notifications_widget.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/notifications_widget.tpl b/view/tpl/notifications_widget.tpl index 60acb1654..18f3ef12d 100644 --- a/view/tpl/notifications_widget.tpl +++ b/view/tpl/notifications_widget.tpl @@ -22,7 +22,7 @@ }); {{if $module == 'display' || $module == 'hq'}} - $(document).on('click', '.notification', function(e) { + $(document).on('click touch', '.notification', function(e) { var b64mid = $(this).data('b64mid'); var notify_id = $(this).data('notify_id'); var path = $(this)[0].pathname.substr(1,7); |