- From: Erik Arvidsson <arv@chromium.org>
- Date: Wed, 1 Aug 2012 14:07:12 -0700
- To: whatwg <whatwg@lists.whatwg.org>
Most JS libraries has a way to add or remove a class name based on a
boolean parameter.
I'm suggesting we add a way to do this to DOMTokenList. The semantics
would be the same as the following pure JS implementation.
DOMTokenList.prototype.enable = function(name, value) {
value ? this.add(name) : this.remove(name);
};
--
erik
Received on Wednesday, 1 August 2012 21:08:00 UTC