Fix typos in classList for spinner component.

master
Addy Osmani 2015-02-11 15:51:46 +00:00
parent bdf29b1907
commit 3e2bef4f7f
1 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ MaterialSpinner.prototype.createLayer = function(index) {
MaterialSpinner.prototype.stop = function() {
'use strict';
this.element_.classlist.remove('is-active');
this.element_.classList.remove('is-active');
};
/**
@ -94,7 +94,7 @@ MaterialSpinner.prototype.stop = function() {
MaterialSpinner.prototype.start = function() {
'use strict';
this.element_.classlist.add('is-active');
this.element_.classList.add('is-active');
};
/**