diff --git a/src/plugins/core/events.js b/src/plugins/core/events.js index 8f40bf12..1c6daa50 100644 --- a/src/plugins/core/events.js +++ b/src/plugins/core/events.js @@ -187,7 +187,7 @@ define([ * * Chrome on android provides `ClipboardEvent.clipboardData` but the types array is not filled */ - if (event.clipboardData && event.clipboardData.types.length > 0) { + if (event.clipboardData && event.clipboardData.types && event.clipboardData.types.length > 0) { event.preventDefault(); if (Immutable.List(event.clipboardData.types).includes('text/html')) {