Created
March 13, 2015 12:15
-
-
Save DaveVoyles/b4808d8a50535d588b34 to your computer and use it in GitHub Desktop.
radial buttons incomplete
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<link rel="import" href="bower_components/polymer/polymer.html" > | |
<link rel="import" href="../paper-radio-group/paper-radio-group.html" > | |
<link rel="import" href="../paper-radio-button/paper-radio-button.html"> | |
<polymer-element name="x-radial-buttons"> | |
<!-- Shadow DOM --> | |
<template> | |
<style> | |
#paper_radio_group { | |
position: relative; | |
width: 440px; | |
height: 50px; | |
} | |
</style> | |
<paper-radio-group selected="English-GB" valueattr="label" selectedindex="1" id="paper_radio_group"> | |
<paper-radio-button label="English-US" id="paper_radio_btn_en-US" on-click="{{ changeAccentUS }}"></paper-radio-button> | |
<paper-radio-button label="English-GB" id="paper_radio_btn_en-GB" on-click="{{ changeAccentGB }}"></paper-radio-button> | |
<paper-radio-button label="Spanish" id="paper_radio_btn_es-ES" on-click="{{ changeAccentES }}"></paper-radio-button> | |
</paper-radio-group> | |
</template> <!-- /Shadow DOM --> | |
<script> | |
Polymer({ | |
}) | |
</script> | |
</polymer-element> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment