Opened 16 years ago
Closed 15 years ago
#1434 closed bug (worksforme)
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.
Change History (1)
comment:1 Changed 15 years ago by
need: | Review → Test Case |
---|---|
Resolution: | → worksforme |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
I can't seem to reproduce this. Please feel free to reopen with a test case.