Mike Jumper created GUACAMOLE-1481:
--------------------------------------

             Summary: 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
             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.1#820001)

Reply via email to