redpelicans / aurelia-material

Material design for Aurelia
Apache License 2.0
48 stars 14 forks source link

remove jquery #8

Open jimmywarting opened 8 years ago

jimmywarting commented 8 years ago

Are you serious using jQuery for one simple thing? managing classes...

It can easily be replaced with this:

element.classList.contains("mdl-js-ripple-effect");
....
element.classList.add(html.join(' '))

its not only faster, but it also don't need to load a hole library that people don't use

eric-swann-q2 commented 8 years ago

I've added a pull request for this #12