[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

abarth at webkit.org abarth at webkit.org
Wed Dec 22 12:46:05 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit 46de86f9162aa2d17dbfc4cf59975a8ee7fc1416
Author: abarth at webkit.org <abarth at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sun Aug 29 18:04:14 2010 +0000

    2010-08-29  Adam Barth  <abarth at webkit.org>
    
            Turns out we're supposed to use find instead of children here.
    
            * code-review.js:
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@66333 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/BugsSite/ChangeLog b/BugsSite/ChangeLog
index cd88480..8006a80 100644
--- a/BugsSite/ChangeLog
+++ b/BugsSite/ChangeLog
@@ -1,5 +1,11 @@
 2010-08-29  Adam Barth  <abarth at webkit.org>
 
+        Turns out we're supposed to use find instead of children here.
+
+        * code-review.js:
+
+2010-08-29  Adam Barth  <abarth at webkit.org>
+
         Reviewed by Eric Seidel.
 
         Awesomify pretty-diff based review tool
diff --git a/BugsSite/code-review.js b/BugsSite/code-review.js
index bab38e5..ac73d15 100644
--- a/BugsSite/code-review.js
+++ b/BugsSite/code-review.js
@@ -145,6 +145,6 @@
     $('#comment_form').removeClass('inactive');
     var comment = comments_in_context.join('\n\n');
     console.log(comment);
-    $('#comment_form').children('iframe').contents().find('#comment').val(comment);
+    $('#comment_form').find('iframe').contents().find('#comment').val(comment);
   });
 })();

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list