jss-react-material
Version:
Google Material Components for React
19 lines (16 loc) • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function hasTouchEvents() {
return 'ontouchstart' in window || navigator.maxTouchPoints > 0 || navigator.msMaxTouchPoints > 0;
}
/**
* Makes the given component "hasTouchEvents".
*
* @param object component Component.
*/
function getClassesDecorator(component) {
component.prototype.hasTouchEvents = hasTouchEvents;
}
exports.default = getClassesDecorator;