문제

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"

도움이 되었습니까?

해결책

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

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top