Fixed content_highlight alignment in Firefox >= 10
Brought to you by:
cdolivet
Original code checked if the Firefox version string, e.g. '19.0' is greater than '3' which evaluates as false. Fixed version uses native js function parseFloat() and checks against the float:
if( parseFloat(t.isFirefox) >= 3.0 ) ...
instead of
if( t.isFirefox >= '3' ) ...
View and moderate all "patches Discussion" comments posted by this user
Mark all as spam, and block user from posting to "Patches"
Fixed main editarea JS code