Skip to content

Commit

Permalink
Merge pull request #6279 from scrathat/tool.search.overlay.selector.fix
Browse files Browse the repository at this point in the history
Fix tool search overlay selector
  • Loading branch information
jmchilton committed Jun 5, 2018
2 parents 7a7560a + 3ec5787 commit 1d52f04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/plugins/webhooks/demo/search/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ $(document).ready(function() {
};

// Open search overlay on click of magnifier icon in the masthead
self.parentElement.find( 'ul#searchover a' ).on( 'click', function( e ) {
self.parentElement.find( 'ul #searchover a' ).on( 'click', function( e ) {
e.preventDefault();
e.stopPropagation();
if ( $( '.search-screen-overlay' ).is( ':visible' ) ){
Expand Down

0 comments on commit 1d52f04

Please sign in to comment.