From eab609185ad1bf34df71bae70ee1e2fe55311357 Mon Sep 17 00:00:00 2001 From: mouseshi Date: Thu, 2 Jul 2015 16:27:59 +0800 Subject: [PATCH] fix: modify announcement 4.0 doc Option params --- docs/announcements-4.0.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);