diff --git a/docs/announcements-4.0.html b/docs/announcements-4.0.html index ef067df5..5321ffe5 100644 --- a/docs/announcements-4.0.html +++ b/docs/announcements-4.0.html @@ -451,7 +451,7 @@ $request.then(function (data) { var item = data[d]; // Create the DOM option that is pre-selected by default - var option = new Option(data.text, data.id, true, true); + var option = new Option(item.text, item.id, true, true); // Append it to the select $element.append(option);