diff options
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | share/www/script/browse.js | 5 |
2 files changed, 5 insertions, 1 deletions
@@ -8,6 +8,7 @@ changes. A list of these people is included below. * Chris Anderson <jchris@grabb.it> * William Beh <willbeh@gmail.com> + * Yoan Blanc <yoan.blanc@gmail.com> * Benoit Chesneau <bchesneau@gmail.com> * Paul Joseph Davis <paul.joseph.davis@gmail.com> * Till Klampaeckel <till@klampaeckel.de> diff --git a/share/www/script/browse.js b/share/www/script/browse.js index 7c6440dd..fa8abfbd 100644 --- a/share/www/script/browse.js +++ b/share/www/script/browse.js @@ -178,9 +178,12 @@ function CouchDatabasePage() { db.openDoc(resp.rows[i].id, { success: function(doc) { var optGroup = $("<optgroup></optgroup>").attr("label", doc._id.substr(8)); + var optGroup = $(document.createElement("optgroup")) + .attr("label", doc._id.substr(8)); for (var name in doc.views) { if (!doc.views.hasOwnProperty(name)) continue; - var option = $("<option></option>").attr("value", doc._id + "/" + name).text(name) + var option = $(document.createElement("option")) + .attr("value", doc._id + "/" + name).text(name) .appendTo(optGroup); if (doc._id + "/" + name == viewName) { option[0].selected = true; |