Tuesday 14 May 2013

Disabling the context menu with Dart

To disable the context menu on an element using Dart, simply add a listener to onContextMenu which calls e.preventDefault() to stop the event from bubbling up.

element.onContextMenu.listen((MouseEvent e) => e.preventDefault());