blob: 4fb3682063d89351f2396b211d3cf526fa17ad6d [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.
/**
* @fileoverview Polymer element for the new Discover Welcome dialog.
*/
Polymer({
is: 'discover-welcome',
behaviors: [DiscoverModuleBehavior],
properties: {
/**
* Overriding DiscoverModuleBehavior.moduleName.
*/
moduleName: {
type: String,
readOnly: true,
value: 'welcome',
},
},
updateLocalizedContent: function() {
this.i18nUpdateLocale();
},
show: function() {
// TODO(alemate)
},
/*
* @private
*/
onCloseButton_: function() {
this.fire('module-skip');
},
/*
* @private
*/
onContinueButton_: function() {
this.fire('module-continue');
},
});