Daniel Rabe
Daniel Rabe
first adding latest (0.8.6) to npm would be nice :)
try: ``` javascript capabilities: { 'browserName': 'chrome', 'chromeOptions': { 'args': ['show-fps-counter=true'], 'mobileEmulation' : { 'deviceName': 'Apple iPhone 6' } } } ```
Ok the first solution did not work, the clicks worked again but the scroll-bug did occur again :( I did a pull request with another solution, it seems to fix...
is it allowed to use the fonts of cdn on commercial website? and can we serve this fonts from our assets folder without using the cdn url?
i see the same error spam in logs ASROCK N100DC-ITX RAM: Corsair Vengeance LPX 8GB PSU: 90W Leike HDD: 4TB WD Red, 4TB WD Blue, HP SSD EX900 M.2 250GB
no sorry i know nobody with an android pencil i changed my local solution again, to avoid unnessaccery clicks, by keeping track of the max-y-distance of the touchmove event, and...
https://github.com/jharding/grunt-sed/pull/18
i had the issue with the popover component, so I added a custom BackdropComponent that cancels the touchmove event ```jsx import * as React from 'react'; import Backdrop, { BackdropProps...
you can override the default-props of material-ui's BackDrop before creating your App: ```jsx import BackDrop from 'material-ui/Modal/Backdrop'; BackDrop.defaultProps = {...BackDrop.defaultProps, onTouchMove: preventBackdropScroll}; export function preventBackdropScroll(event: React.TouchEvent): void { let target:...