Skip to content

Commit

Permalink
Merge branch 'master' into 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keanulee committed Sep 13, 2018
2 parents 08ea603 + ee8b2db commit d5a1a80
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @keanulee @frankiefu
4 changes: 2 additions & 2 deletions src/news-drawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@ class NewsDrawer extends PolymerElement {
</style>
<app-drawer opened="{{drawerOpened}}" swipe-open="" tabindex="0">
<paper-icon-button icon="close" on-click="_closeDrawer"></paper-icon-button>
<app-drawer opened="{{drawerOpened}}" swipe-open tabindex="0">
<paper-icon-button icon="close" on-click="_closeDrawer" aria-label="Close main navigation"></paper-icon-button>
<iron-selector role="navigation" class="drawer-list" selected="[[category.name]]" attr-for-selected="name">
<dom-repeat items="[[categories]]" as="category" initial-count="9">
<template>
Expand Down
5 changes: 4 additions & 1 deletion src/news-img.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ class NewsImg extends PolymerElement {

static get properties() { return {

alt: String,
alt: {
type: String,
value: ''
},

src: {
type: String,
Expand Down

0 comments on commit d5a1a80

Please sign in to comment.