Opened 13 years ago
Closed 13 years ago
#71 closed defect (fixed)
Selecting the image and press delete
Reported by: | fc.stuurman@… | Owned by: | guillaumed |
---|---|---|---|
Priority: | normal | Milestone: | Version 1.0 |
Component: | Xinha Core | Version: | trunk |
Severity: | normal | Keywords: | delete image |
Cc: |
Description
Selecting the image and press delete I get:
This object doesn't handle this property or method
I found the solution on the old HTMLArea forum:
Code:
HTMLArea.prototype.ie_checkBackspace = function() {
var sel = this._getSelection();
if (sel.type == "Control") return;
The var sel = this._getSelection(); is added and It is on line 3308 in htmlarea.js.
Kind regards Fred Stuurman.
Change History (4)
comment:1 Changed 13 years ago by gogo
- Milestone set to Version 1.0
- Version set to trunk
comment:2 Changed 13 years ago by guillaumed
- Owner changed from gogo to guillaumed
comment:3 Changed 13 years ago by gogo
comment:4 Changed 13 years ago by gogo
- Resolution set to fixed
- Status changed from new to closed
Works for me (now).
Note: See
TracTickets for help on using
tickets.
guillaume: you might want to check that this still happens before you try fixing it, I have a feeling it may be fixed already as a result of fixing another problem a while ago.