| 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() {
|
|
|