Replace unnecessary function supportsCursorURIs by a constant variable

This commit is contained in:
Juanjo Diaz
2019-02-27 10:14:50 +02:00
committed by Lauri Kasanen
parent 37c17ddbf9
commit c6c278f9d5
2 changed files with 14 additions and 20 deletions

View File

@@ -6,7 +6,7 @@
import { supportsCursorURIs, isTouchDevice } from './browser.js';
const useFallback = !supportsCursorURIs() || isTouchDevice;
const useFallback = !supportsCursorURIs || isTouchDevice;
export default class Cursor {
constructor() {