diff options
author | Einar Egilsson | 2007-05-21 22:03:05 +0000 |
---|---|---|
committer | Einar Egilsson | 2007-05-21 22:03:05 +0000 |
commit | 502c24f18cdfa0f808d9383313bb4f965c7fb11f (patch) | |
tree | c9f2523995b6fc59e3bf6cc3bcc9200bbedd5e95 /chrome/content/redirectList.js |
Redirector
git-svn-id: http://einaregilsson.googlecode.com/svn/mozilla/redirector/trunk@53 119bf307-c92d-0410-89bd-8f53e6181181
Diffstat (limited to 'chrome/content/redirectList.js')
-rw-r--r-- | chrome/content/redirectList.js | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/chrome/content/redirectList.js b/chrome/content/redirectList.js new file mode 100644 index 0000000..522fa20 --- /dev/null +++ b/chrome/content/redirectList.js @@ -0,0 +1,30 @@ +var RedirectList = { + + + addItemsToListBox : function(items) { + + var list = document.getElementById('foo'); + var item, row, value; + + for each (item in items) { + + row = document.createElement('listitem'); + + for each (value in item) { + cell = document.createElement('listcell'); + cell.setAttribute('label',value); + cell.setAttribute('value',value); + row.appendChild(cell); + } + + list.appendChild(row); + } + }, + + + + onLoad : function() { + addItemsToList(items); + } + +}; |