Title: [148528] trunk/Websites/bugs.webkit.org
Revision
148528
Author
[email protected]
Date
2013-04-16 11:50:00 -0700 (Tue, 16 Apr 2013)

Log Message

Build fix after r148527.

* committers-autocomplete.js:
(WebKitCommitters):

Modified Paths

Diff

Modified: trunk/Websites/bugs.webkit.org/ChangeLog (148527 => 148528)


--- trunk/Websites/bugs.webkit.org/ChangeLog	2013-04-16 18:41:11 UTC (rev 148527)
+++ trunk/Websites/bugs.webkit.org/ChangeLog	2013-04-16 18:50:00 UTC (rev 148528)
@@ -1,5 +1,12 @@
 2013-04-16  Ryosuke Niwa  <[email protected]>
 
+        Build fix after r148527.
+
+        * committers-autocomplete.js:
+        (WebKitCommitters):
+
+2013-04-16  Ryosuke Niwa  <[email protected]>
+
         The list of contributors in committers.py should be a separate JSON
         https://bugs.webkit.org/show_bug.cgi?id=114673
 

Modified: trunk/Websites/bugs.webkit.org/committers-autocomplete.js (148527 => 148528)


--- trunk/Websites/bugs.webkit.org/committers-autocomplete.js	2013-04-16 18:41:11 UTC (rev 148527)
+++ trunk/Websites/bugs.webkit.org/committers-autocomplete.js	2013-04-16 18:50:00 UTC (rev 148528)
@@ -30,11 +30,12 @@
     function parseType(key, records, type) {
         for (var name in records) {
             var record = records[name];
-            result.name = name;
-            result.emails = record.emails;
-            result.irc = record.nicks;
-            result.type = type;
-            m_committers.push(result);
+            m_committers.push({
+                name: name,
+                emails: record.emails,
+                irc: record.nicks,
+                type: type,
+            });
         }
     }
 
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to