Browse Source

Merge pull request #60 from danielguillan/patch-1

Fixed typo in README example
pull/63/head
Todd Motto 10 years ago
parent
commit
8d33ab9123
  1. 4
      README.md

4
README.md

@ -92,9 +92,9 @@ The callback will be passed the element that has been updated and what the updat
echo.init({
callback: function(element, op) {
if(op === 'load') {
elemend.classList.add('loaded');
element.classList.add('loaded');
} else {
elemend.classList.remove('loaded');
element.classList.remove('loaded');
}
}
});

Loading…
Cancel
Save