classes icon indicating copy to clipboard operation
classes copied to clipboard

can not add class in IE7

Open luobotang opened this issue 10 years ago • 1 comments

http://stackoverflow.com/questions/531508/getattribute-cannot-return-class-in-ie7

So,

ClassList.prototype.array = function(){
  var className = this.el.getAttribute('class') || '';

shoude be updated to:

var className = this.el.className;

luobotang avatar Aug 25 '15 03:08 luobotang

I make a pull request: https://github.com/component/classes/pull/26

luobotang avatar Aug 25 '15 03:08 luobotang