-
Bug
-
Resolution: Fixed
-
Trivial
-
3.0.10, 3.1.0-dev
-
None
-
Opera 11.62, 9.64 (probably all versions)
When quoting selected text (not entire post) in the topic review, Opera misses the linebreaks. Possible solution: force Opera to use document.getSelection() instead of window.getSelection().
Find in editor.js
if (window.getSelection && !is_ie)
|
{
|
theSelection = window.getSelection().toString();
|
}
|
else if (document.getSelection && !is_ie)
|
{
|
theSelection = document.getSelection();
|
}
|
Replace first line with
if (window.getSelection && !is_ie && !window.opera)
|
Tested on Opera 11.62 & 9.64.