Skip to content

Commit

Permalink
Fix 6633: Prevent click event from bubbling up to the toggle
Browse files Browse the repository at this point in the history
  • Loading branch information
jumde committed Nov 20, 2019
1 parent 0342c29 commit 293ba62
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@ Polymer({
return enabled != this.browserProxy_.wasPushMessagingEnabledAtStartup();
},

restartBrowser_: function() {
restartBrowser_: function(e) {
e.stopPropagation();
window.open("chrome://restart", "_self");
},

Expand Down

0 comments on commit 293ba62

Please sign in to comment.