MagicTouch icon indicating copy to clipboard operation
MagicTouch copied to clipboard

FF4 - Operation is not supported" code: "9

Open JohnRSim opened this issue 13 years ago • 2 comments

I`m getting Operation is not supported" code: "9"

var evt = document.createEvent('CustomEvent'); Line 28

I have npTuioClient NPAPI setup on firefox Using TUIOdroid as the interface and not TongSeng

Also I noticed line 84 on touch.html returns - event is not defined.

JohnRSim avatar May 02 '11 16:05 JohnRSim

To fix - update magicTouch.js line 28 to var evt = document.createEvent('HTMLEvents');

Also I`m working with touchlog.html please update event listener useCapture with false

rect.addEventListener('touchstart', function(event) { console.log('touchstart on r1'); console.log(event.targetTouches); },false);

JohnRSim avatar May 03 '11 12:05 JohnRSim

'event' not defined can be fixed by 'document.event'

davidonet avatar Sep 24 '11 04:09 davidonet