[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

ap at apple.com ap at apple.com
Thu Oct 29 20:46:58 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit a985a102886928251d0af36215d6ac8645313d7b
Author: ap at apple.com <ap at apple.com@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Oct 17 22:38:24 2009 +0000

            Reviewed by Eric Carlson.
    
            https://bugs.webkit.org/show_bug.cgi?id=30470
            Make marking a bug as duplicate easier
    
            * js/field.js: (setResolutionToDuplicate): Focus the edit field, too.
    
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49744 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/BugsSite/ChangeLog b/BugsSite/ChangeLog
index b014022..8d79a3f 100644
--- a/BugsSite/ChangeLog
+++ b/BugsSite/ChangeLog
@@ -1,3 +1,12 @@
+2009-10-17  Alexey Proskuryakov  <ap at apple.com>
+
+        Reviewed by Eric Carlson.
+
+        https://bugs.webkit.org/show_bug.cgi?id=30470
+        Make marking a bug as duplicate easier
+
+        * js/field.js: (setResolutionToDuplicate): Focus the edit field, too.
+
 2009-10-16  Alexey Proskuryakov  <ap at apple.com>
 
         Reviewed by Mark Rowe.
diff --git a/BugsSite/js/field.js b/BugsSite/js/field.js
index f2dce57..a7890e6 100644
--- a/BugsSite/js/field.js
+++ b/BugsSite/js/field.js
@@ -329,6 +329,9 @@ function setResolutionToDuplicate(e, duplicate_or_move_bug_status) {
     // Show edit field for bug number, so that the user doesn't have to click on "(edit)".
     YAHOO.util.Dom.setStyle('dup_id', 'display', 'inline');
     YAHOO.util.Dom.setStyle('dup_id_container', 'display', 'none');
+    var dup_id = document.getElementById('dup_id');
+    dup_id.focus();
+    dup_id.select();
 
     YAHOO.util.Event.preventDefault(e);
 }

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list