Merge "resourceloader: Use AND instead of OR for upsert conds in saveFileDependencies()"
authorjenkins-bot <jenkins-bot@gerrit.wikimedia.org>
Fri, 24 May 2019 13:37:43 +0000 (13:37 +0000)
committerGerrit Code Review <gerrit@wikimedia.org>
Fri, 24 May 2019 13:37:43 +0000 (13:37 +0000)
README
resources/src/jquery/jquery.suggestions.js

diff --git a/README b/README
index ad9b9d9..b9b2c8a 100644 (file)
--- a/README
+++ b/README
@@ -23,7 +23,7 @@ RELEASE-NOTES, INSTALL, and UPGRADE.
 * Seeking help from a person?
 ** https://www.mediawiki.org/wiki/Special:MyLanguage/Communication
 * Looking to file a bug report or a feature request?
-** https://bugs.mediawiki.org/
+** https://phabricator.mediawiki.org/
 * Interested in helping out?
 ** https://www.mediawiki.org/wiki/Special:MyLanguage/How_to_contribute
 
index a585cf3..9e6ecc8 100644 (file)
                                                }
                                                $.suggestions.hide( context );
                                                $.suggestions.cancel( context );
-                                       } );
+                                       } )
+                                       // Simulate a keypress on load. This loads the search suggestions when there are already
+                                       // typed characters before the JavaScript is loaded.
+                                       .trigger( 'keypress' );
                        }
 
                        // Store the context for next time