From 608cbde285663690112caae64775c06e818d417e Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Wed, 3 Aug 2011 18:48:28 +0400 Subject: prototypize creation of headlines-spacer --- viewfeed.js | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/viewfeed.js b/viewfeed.js index 9d5af3adf..a4ac946a3 100644 --- a/viewfeed.js +++ b/viewfeed.js @@ -73,9 +73,7 @@ function headlines_callback2(transport, feed_cur_page) { reply['headlines']['toolbar']); var hsp = $("headlines-spacer"); - if (!hsp) hsp = document.createElement("DIV"); - - hsp.id = "headlines-spacer"; + if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"}); if (!_infscroll_disable) hsp.innerHTML = " " + @@ -103,9 +101,7 @@ function headlines_callback2(transport, feed_cur_page) { c.domNode.appendChild(row); }); - if (!hsp) hsp = document.createElement("DIV"); - - hsp.id = "headlines-spacer"; + if (!hsp) hsp = new Element("DIV", {"id": "headlines-spacer"}); if (!_infscroll_disable) hsp.innerHTML = " " + -- cgit v1.2.3