| Issue 72: | pull-to-refresh/index.html on firefox don't work | |
| 2 people starred this issue and may be notified of changes. | Back to list |
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
or use innerHTML |
solution: change 41 li.innerText = 'Generated row ' + (++generatedCount); to li.textContent = 'Generated row ' + (++generatedCount);