.no_editor class glitch/bug

suwsuw
edited September 2012 in Bug Reports
Hello
I've found and fix a small bug regarding textarea and no_editor class.
With jqueryUI -> tabs when one put textarea with .no_editor class, tab script add some more classes to that dom element:

"no_editor ui-tabs-panel ui-widget-content ui-corner-bottom"

instead:
var selector = 'textarea:not(textarea[class=no_editor])';

replace with:
var selector = 'textarea:not(.no_editor)';
now no_editor works perfectly -

Comments

Sign In or Register to comment.