blob: 02108615aad6627772660df4b186abb659946ee9 [file] [log] [blame]
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
Polymer({
is: 'history-side-bar',
/**
* Handles menu selection changes.
* @param {Event} e
* @private
*/
onSelect_: function(e) {
this.fire('unselect-all');
this.fire('switch-display', {display: e.detail.item.id});
},
});