Add Hyperlink Error
Reported by Oscar Kuchuk | November 7th, 2009 @ 12:39 AM | in 0.5
Method createlink
In this line (1178 MooEditable.js:
if (urlRegex.test(text))
prompt.el.getElement('.mooeditable-dialog-
input').set('value', text);
The correct class for input field is dialog-input so the line
could be change
as:
if (urlRegex.test(text))
prompt.el.getElement('.dialog-input').set('value',
text);
or change class in MooEditable.UI.PromptDialog as (line 1038
MooEditable.js):
+ ' <input type="text" class="text mooeditable-dialog-input" value="' +
answerText + '">'
Good work
Comments and changes to this ticket
-
Lim Chee Aun November 7th, 2009 @ 07:36 AM
(from [940677af9fb4b90416497f001eb6a3128b18727d]) Fixed this really old regression bug [#12] http://github.com/cheeaun/mooeditable/commit/940677af9fb4b90416497f...
-
Lim Chee Aun November 7th, 2009 @ 07:38 AM
- State changed from new to resolved
- Tag set to bug, hyperlink, regression
Please Sign in or create a free account to add a new ticket.
With your very own profile, you can contribute to projects, track your activity, watch tickets, receive and update tickets through your email and much more.
Create your profile
Help contribute to this project by taking a few moments to create your personal profile. Create your profile ยป
A simple web-based WYSIWYG editor, written in Mootools.
People watching this ticket
Tags
Referenced by
- 12 Add Hyperlink Error (from [940677af9fb4b90416497f001eb6a3128b18727d]) Fixed t...