* Remove a class from all elements in the array
(className: string | string[])
| 963 | * Remove a class from all elements in the array |
| 964 | */ |
| 965 | removeClass(className: string | string[]): this { |
| 966 | for (const item of this) { |
| 967 | item.removeClass(className); |
| 968 | } |
| 969 | return this; |
| 970 | } |
| 971 | |
| 972 | /** |
| 973 | * Add a class to all elements in the array |
nothing calls this directly
no test coverage detected