1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
6 is
: 'notification-card',
25 iconNameByType_: function(type
) {
28 if (type
== 'success')
30 console
.error('Unknown type "' + type
+ '".');
34 buttonClicked_: function() {
35 this.fire('buttonclick');
38 linkClicked_: function(e
) {
39 this.fire('linkclick');
44 return this.$.submitButton
;