Issue 72: pull-to-refresh/index.html on firefox don't work
Status:  New
Owner: ----
Reported by gwmaster...@gmail.com, Feb 23, 2012
What steps will reproduce the problem?
1.run pull-to-refresh/index.html
2. scroll down
3.and scroll again to add "Generetred row"

What is the expected output? What do you see instead?
Generetred row 1,2,3 on chrome safari
FireFox blank

What version of the product are you using? On what operating system?
Mac FireFox 10.0.2

Please provide any additional information below.

probable this line does not add the content well:
   42: el.appendChild(li, el.childNodes[0]);
Feb 23, 2012
#2 gwmaster...@gmail.com
solution:

    change

41	li.innerText = 'Generated row ' + (++generatedCount);

 to
	li.textContent = 'Generated row ' + (++generatedCount);
Feb 23, 2012
#3 gwmaster...@gmail.com
or use
innerHTML