| Index: polymer_1.2.3/bower_components/paper-behaviors/demo/paper-radio-button.html
|
| diff --git a/polymer_1.0.4/bower_components/paper-behaviors/demo/paper-radio-button.html b/polymer_1.2.3/bower_components/paper-behaviors/demo/paper-radio-button.html
|
| similarity index 88%
|
| copy from polymer_1.0.4/bower_components/paper-behaviors/demo/paper-radio-button.html
|
| copy to polymer_1.2.3/bower_components/paper-behaviors/demo/paper-radio-button.html
|
| index 93af1752b5401c44dcc8e80befb073d49a552e9b..097202443391067b101d03ad10a6fbfe8826c300 100644
|
| --- a/polymer_1.0.4/bower_components/paper-behaviors/demo/paper-radio-button.html
|
| +++ b/polymer_1.2.3/bower_components/paper-behaviors/demo/paper-radio-button.html
|
| @@ -10,7 +10,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
| <link rel="import" href="../../polymer/polymer.html">
|
| <link rel="import" href="../../paper-ripple/paper-ripple.html">
|
| -<link rel="import" href="../paper-inky-focus-behavior.html">
|
| +<link rel="import" href="../paper-checked-element-behavior.html">
|
|
|
| <dom-module id="paper-radio-button">
|
|
|
| @@ -89,7 +89,6 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| <div id="radioContainer">
|
| <div id="offRadio"></div>
|
| <div id="onRadio"></div>
|
| - <paper-ripple id="ink" class="circle" center></paper-ripple>
|
| </div>
|
| </template>
|
|
|
| @@ -98,7 +97,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
| Polymer({
|
|
|
| behaviors: [
|
| - Polymer.PaperInkyFocusBehavior
|
| + Polymer.PaperCheckedElementBehavior
|
| ],
|
|
|
| hostAttributes: {
|
| @@ -107,6 +106,11 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
|
|
|
| ready: function() {
|
| this.toggles = true;
|
| + },
|
| +
|
| + _createRipple: function() {
|
| + this._rippleContainer = this.$.radioContainer;
|
| + return Polymer.PaperInkyFocusBehaviorImpl._createRipple.call(this);
|
| }
|
|
|
| });
|
|
|