1

Firefox (20.0.1) displays drag & drop icons around contenteditable elements when they are focussed.

How can I disable these icons?

Example below: Arrows around "THREE".

focussed contenteditable element in Firefox showing (expando?) icons around "THREE"

Kara
  • 6,115
  • 16
  • 50
  • 57
Marc Owens
  • 121
  • 2
  • 11

1 Answers1

1

The issue was with inline table editing. Here's how to turn it off:

// disable table editing
doc.execCommand("enableInlineTableEditing", null, false);

from: Contenteditable table row,column modifier

Community
  • 1
  • 1
Marc Owens
  • 121
  • 2
  • 11