Elrte image button
Added by Sistema Datos 9 months ago
Hi people:
Just a little question: When I try to add an image with elrte, it opens a window where i can chosse my files (file manager el finder). The problem is that i cant press well the button elfinder (only works with the corners of the button is really strange)
Somebody knows about the problem....
thankss...
Replies (7)
RE: Elrte image button
-
Added by Troex Nevelin 9 months ago
What browser are you using? Does this happens on demo http://elrte.org/demo? Maybe some of yours styles overlap with elRTE.
RE: Elrte image button
-
Added by Sistema Datos 9 months ago
Hello:
Iam using Internet explorer right now. Yes it happens also in the demo. But in Firefox works correctly.
Can you tell where i have to set this?
Thanks....
RE: Elrte image button
-
Added by Troex Nevelin 9 months ago
I've checked in IE8, and confirm this bug.
Can you tell where i have to set this?
I don't know this is a bug in elRTE and has to be fixed
RE: Elrte image button
-
Added by Sistema Datos 9 months ago
Can somebody tell me where i have to fix this bug???
Help please....
Urgent!!!
RE: Elrte image button
-
Added by Troex Nevelin 9 months ago
We currently don't have time on elRTE, if its really urgent try using previous version.
RE: Elrte image button
-
Added by Aen Vuhoun 6 months ago
Hello together,
I managed to find cause of this problem. In full source code file elrte.full.js (in current version on line 6560), there is missing ending </span> tag. When I added this tag, it works correctly in IE too.
Original code:
src = fm
? $('<div class="elrte-image-src-fm"><span class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-folder-open"/></span></div>')
.append(this.src.main.src.css('width', '87%'))
: this.src.main.src;
;
Corrected code:
src = fm
? $('<div class="elrte-image-src-fm"><span class="ui-state-default ui-corner-all"><span class="ui-icon ui-icon-folder-open"/></span></span></div>')
.append(this.src.main.src.css('width', '87%'))
: this.src.main.src;
;
(1-7/7)