You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@guacamole.apache.org by "Mike Jumper (Jira)" <ji...@apache.org> on 2023/02/01 00:07:00 UTC

[jira] [Commented] (GUACAMOLE-1481) Migrate remaining events to new event API

    [ https://issues.apache.org/jira/browse/GUACAMOLE-1481?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17682793#comment-17682793 ] 

Mike Jumper commented on GUACAMOLE-1481:
----------------------------------------

We should probably bump this to 1.6.0 so that we can release 1.5.0, which otherwise looks ready except for docs.

> Migrate remaining events to new event API
> -----------------------------------------
>
>                 Key: GUACAMOLE-1481
>                 URL: https://issues.apache.org/jira/browse/GUACAMOLE-1481
>             Project: Guacamole
>          Issue Type: Improvement
>          Components: guacamole, guacamole-common-js
>            Reporter: Mike Jumper
>            Priority: Major
>             Fix For: 1.5.0
>
>
> GUACAMOLE-1204 introduced a new, improved event API which replaced things like:
> {code:javascript}
> mouse.onmousedown = function myhandler(state) {
>    ...
> };
> {code}
> with:
> {code:javascript}
> mouse.on('mousedown', function mynewhandler(event) {
>    ...
> });
> {code}
> Mouse and touch events were migrated to this new API, however the remaining events were not migrated in the interest of not blocking the 1.4.0 release. This migration should be performed for the remaining events.



--
This message was sent by Atlassian Jira
(v8.20.10#820010)