Side navigation
#1434 closed bug (worksforme)
Opened July 29, 2007 04:40PM UTC
Closed September 18, 2007 02:15PM UTC
no check if Property className exists
| Reported by: | naish | Owned by: | |
|---|---|---|---|
| Priority: | major | Milestone: | 1.1.4 | 
| Component: | core | Version: | 1.1.3 | 
| Keywords: | css removeClass | Cc: | |
| Blocked by: | Blocking: | 
Description
in function "remove" I had the error "error: elem.className has no properties" so I added the line:
if(!elem.className)return;
into the function:
remove: function( elem, c ){
if(!elem.className)return;
elem.className = c != undefined ?
jQuery.grep( elem.className.split(/\\s+/), function(cur){
return !jQuery.className.has( c, cur );
}).join(" ") : "";
},
I couldnot reproduce the Error, but using that Change helped.
Attachments (0)
Change History (1)
Changed September 18, 2007 02:15PM UTC by comment:1
| need: | Review → Test Case | 
|---|---|
| resolution: | → worksforme | 
| status: | new → closed | 
I can't seem to reproduce this. Please feel free to reopen with a test case.