jQuery-Desktop icon indicating copy to clipboard operation
jQuery-Desktop copied to clipboard

How to enable desktop icons for touch screen events?

Open iktuz opened this issue 10 years ago • 2 comments

Hi Nathan,

Is there a way to enable touch screen navigation with jQuery-Desktop? The top menus works nicelly, but not the desktop icons.

By the way, thanks and congratulations for your nice job.

iktuz avatar Feb 13 '15 02:02 iktuz

Hi ikutz, I found a workaround: As there is no "doubleclick" for touch event, just change to onclick:

d.on('dblclick', 'a.icon', function() {

change to

d.on('click', 'a.icon', function() {

regards, Till

wehowski avatar May 29 '15 05:05 wehowski

Thanks Nathan!

Best Regards, José Renato.

2015-05-29 2:41 GMT-03:00 Till Wehowski [email protected]:

Hi ikutz, I found a workaround: As there is no "doubleclick" for touch event, just change to onclick:

d.on('dblclick', 'a.icon', function() {

change to

d.on('click', 'a.icon', function() {

regards, Till

— Reply to this email directly or view it on GitHub https://github.com/nathansmith/jQuery-Desktop/issues/6#issuecomment-106696650 .

iktuz avatar May 29 '15 11:05 iktuz