diff --git a/src/state-summary/state-card-weblink.html b/src/state-summary/state-card-weblink.html index 64a39a4295..386f388ba8 100644 --- a/src/state-summary/state-card-weblink.html +++ b/src/state-summary/state-card-weblink.html @@ -49,10 +49,7 @@ Polymer({ onTap: function (ev) { ev.stopPropagation(); - if (ev.target === this.$.link) { - // Only open window if we clicked on card but not the link - return; - } + ev.preventDefault(); window.open(this.stateObj.state, '_blank'); }, });