Commit a4ac1308 authored by Anthony Ryan's avatar Anthony Ryan

Document the affected versions of opera, and replace $.browser.opera with a...

Document the affected versions of opera, and replace $.browser.opera with a line to detect only affected versions
parent 50a45ba9
...@@ -1749,8 +1749,10 @@ Licensed under the MIT license. ...@@ -1749,8 +1749,10 @@ Licensed under the MIT license.
y += line.height/2 + offset; y += line.height/2 + offset;
offset += line.height; offset += line.height;
if ($.browser.opera) { if (!!(window.opera && window.opera.version().split('.')[0] < 12)) {
// FIXME: UGLY BROWSER DETECTION // FIXME: LEGACY BROWSER FIX
// AFFECTS: Opera < 12.00
// round the coordinates since Opera // round the coordinates since Opera
// otherwise switches to more ugly // otherwise switches to more ugly
// rendering (probably non-hinted) and // rendering (probably non-hinted) and
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment