spec/support/html/wait_for_dom.html in watir-dom-wait-0.2.0 vs spec/support/html/wait_for_dom.html in watir-dom-wait-0.2.1
- old
+ new
@@ -32,10 +32,9 @@
function fadeIn(id, value) {
var el = document.getElementById(id);
el.style.opacity = '0.' + value;
if (value < 9) {
- console.log(value);
value++;
setTimeout(function() { fadeIn(id, value) }, 400);
} else {
el.innerHTML = 'Faded';
return;