@Mykle1 yeah the thing is that the app relies on touch dir Input so…
Read the statement by Michael Teeuw here.
Posts
- 
RE: Capacitive Touch Screen Foil
- 
Capacitive Touch Screen FoilHi, As a part of a university project we are currently building a magic mirror. We were given this monitor https://www.amazon.de/Hannspree-HT231HPB-Monitor-Diagonal-schwarz/dp/B00FMB15TC/ref=sr_1_fkmr0_1?ie=UTF8&qid=1516607267&sr=8-1-fkmr0&keywords=HT231+HannsG and a Raspberry Pi 3. Other than that we have a budget of about 70 quit. The question is how can we get the monitor to work through a two way mirror? Since it is a capacitive screen I heard that those tend to make a bit of problem when I comes to metallic infused foils or glass. Can anyone help me figure out a way to make this work with our monitor? Thank you very much for your ideas or help. 
- 
Use node_helper.js functionality in config fileHi, I am building an app with different buttons which the user can define for them selfes what happens when they are pressed. This information is located in the configuration array: config = { button : { name : "bla", callback : function(){} } }and the class organnizing it has a refrence to that button and subscribes to the click event and triggers said callback when clicked. 
 How can I use module.sendSocketNotification in this configuration for the button callback?
- 
RE: JQuery Draggable and UI Touch PunchI would rather of course prefer it working out of the box, but if I can not get it to work I will try this. 
 I looked at the github issues and they are talking about the --enable-touch-events parameter of electron. I have not worked with electron before - do you know where to put that parameter inside the electron.js file?Ok, I tried it like this: const app = electron.app; app.commandLine.appendSwitch('--enable-touch-events');It does not do anything. How would I need to modify the magic mirror scripts in order for it to stop using electron and use chromium instead? I assume I would have to modify the run-start.sh script for that, (since you can not run bash through javascript). Can someone provide me some help for that? 
- 
JQuery Draggable and UI Touch PunchHi, I want to build a module in which the user is able to move the elements over screen by dragging them with touch. To realise that I implemented this: http://touchpunch.furf.com/. It works perfectly fine in the browser (localhost:8080) but in the actual MagicMirror window it does not work at all. Anyone know how to fix that?