Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/lib/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ goog.scope(function() {
// Copy provided data into event object
if (data) {
for (cur in data) {
e[cur] = data[cur];
try{
e[cur] = data[cur];
}catch(exception){
// Fix for chrome 42 since UIEvent.path is not writable
}
}
}

Expand Down