3

Im using a custom touchscreen and I want to activate by default the touch event in node-webkit, is that possible?

This one tell node-webkit how to open the app and control how the browser behaves.

Update:

I'm using Ubuntu like OS, all functionality of touch events work like you are using a mouse(For example you need to scroll down with the scroll bar..). The question is how can I tell my OS that I need to use the mobile touch events?

Thank you.

Mils
  • 388
  • 6
  • 22

1 Answers1

1

Add "chromium-args": "--touch-events", to package.json.

Tested on Ubuntu 14.04 and nw 0.13.04.

More information Manifest format - chromium-args

DinkoM
  • 371
  • 2
  • 8