Suggest an Article Plugin error in IE
Posted: Fri Oct 06, 2006 7:34 pm
Not a big error, but needs to be mentioned.
in /plugins/serendipity_event_suggest
suggest.js is missing the function getIESelection.
It means that the URL button will not work in IE.
Just tacking the following code from the editor.js file onto the end of suggest.js corrects the problem:
in /plugins/serendipity_event_suggest
suggest.js is missing the function getIESelection.
It means that the URL button will not work in IE.
Just tacking the following code from the editor.js file onto the end of suggest.js corrects the problem:
Code: Select all
function getIESelection(txtarea) {
return document.selection.createRange().text;
}