Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Unified Diff: polymer_0.5.4/bower_components/paper-tabs/paper-tabs.html

Issue 895523005: Added Polymer 0.5.4 (Closed) Base URL: https://chromium.googlesource.com/infra/third_party/npm_modules.git@master
Patch Set: Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: polymer_0.5.4/bower_components/paper-tabs/paper-tabs.html
diff --git a/polymer_0.5.0/bower_components/paper-tabs/paper-tabs.html b/polymer_0.5.4/bower_components/paper-tabs/paper-tabs.html
similarity index 98%
copy from polymer_0.5.0/bower_components/paper-tabs/paper-tabs.html
copy to polymer_0.5.4/bower_components/paper-tabs/paper-tabs.html
index bc664f1019dec7819b162128442475377ec32168..8282c1686846a0ba4caec45f7b4980f67fb2ace6 100644
--- a/polymer_0.5.0/bower_components/paper-tabs/paper-tabs.html
+++ b/polymer_0.5.4/bower_components/paper-tabs/paper-tabs.html
@@ -77,6 +77,7 @@ To change the ink ripple color:
@group Paper Elements
@element paper-tabs
@extends core-selector
+@mixins Polymer.CoreResizable https://github.com/polymer/core-resizable
@homepage github.io
-->
@@ -229,7 +230,7 @@ To change the ink ripple color:
var tc = this.$.tabsContainer;
var l = tc.scrollLeft;
this.leftHidden = l === 0;
- this.rightHidden = l === (tc.scrollWidth - tc.clientWidth);
+ this.rightHidden = l === Math.max(0, (tc.scrollWidth - tc.clientWidth));
},
holdLeft: function() {
« no previous file with comments | « polymer_0.5.4/bower_components/paper-tabs/paper-tabs.css ('k') | polymer_0.5.4/bower_components/paper-toast/.bower.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698