blob: 9bbb70e78f38557050523095ed8b9142661fb2bd [file] [log] [blame]
// Copyright 2018 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: 'nux-email',
behaviors: [welcome.NavigationBehavior],
properties: {
/** @type {nux.stepIndicatorModel} */
indicatorModel: Object,
},
onRouteEnter: function() {
this.$.emailChooser.initializeSection();
},
onRouteExit: function() {
this.$.emailChooser.finalizeSection();
},
});