diff --git a/dashboard-ui/bower_components/paper-ripple/paper-ripple.html b/dashboard-ui/bower_components/paper-ripple/paper-ripple.html
index 08d3da1ac0..76f71c8998 100644
--- a/dashboard-ui/bower_components/paper-ripple/paper-ripple.html
+++ b/dashboard-ui/bower_components/paper-ripple/paper-ripple.html
@@ -585,9 +585,10 @@ Apply `circle` class to make the rippling effect within a circle.
}
},
- get shouldKeepAnimating () {
- for (var index = 0; index < this.ripples.length; ++index) {
- if (!this.ripples[index].isAnimationComplete) {
+ get shouldKeepAnimating() {
+ var ripples = this.ripples || [];
+ for (var index = 0; index < ripples.length; ++index) {
+ if (!ripples[index].isAnimationComplete) {
return true;
}
}
@@ -625,9 +626,11 @@ Apply `circle` class to make the rippling effect within a circle.
return;
}
- this.ripples.forEach(function(ripple) {
- ripple.upAction(event);
- });
+ if (this.ripples) {
+ this.ripples.forEach(function (ripple) {
+ ripple.upAction(event);
+ });
+ }
this.animate();
},
@@ -643,7 +646,10 @@ Apply `circle` class to make the rippling effect within a circle.
Polymer.dom(this.$.waves).appendChild(ripple.waveContainer);
this.$.background.style.backgroundColor = ripple.color;
- this.ripples.push(ripple);
+
+ if (this.ripples) {
+ this.ripples.push(ripple);
+ }
this._setAnimating(true);
@@ -672,8 +678,9 @@ Apply `circle` class to make the rippling effect within a circle.
this._animating = true;
- for (index = 0; index < this.ripples.length; ++index) {
- ripple = this.ripples[index];
+ var ripples = this.ripples || [];
+ for (index = 0; index < ripples.length; ++index) {
+ ripple = ripples[index];
ripple.draw();
@@ -684,7 +691,7 @@ Apply `circle` class to make the rippling effect within a circle.
}
}
- if (!this.shouldKeepAnimating && this.ripples.length === 0) {
+ if (!this.shouldKeepAnimating && ripples.length === 0) {
this.onAnimationComplete();
} else {
window.requestAnimationFrame(this._boundAnimate);
diff --git a/dashboard-ui/css/livetv.css b/dashboard-ui/css/livetv.css
index 06fa8c3fff..21b5080949 100644
--- a/dashboard-ui/css/livetv.css
+++ b/dashboard-ui/css/livetv.css
@@ -328,7 +328,7 @@
@media (max-width: 600px) {
- .guideChannelImage {
+ .guideChannelInfoWithImage {
display: none;
}
diff --git a/dashboard-ui/livetvguideprovider-scd.html b/dashboard-ui/livetvguideprovider-scd.html
index f2c83e6670..54465d3c04 100644
--- a/dashboard-ui/livetvguideprovider-scd.html
+++ b/dashboard-ui/livetvguideprovider-scd.html
@@ -65,7 +65,7 @@
-
+