Created
July 16, 2014 12:28
-
-
Save pagenoare/d1cb770f960834d7a834 to your computer and use it in GitHub Desktop.
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/core-collapse/core-collapse.html"> | |
<polymer-element name="my-collapse"> | |
<template> | |
<button on-click="{{toggle}}">Click me</button> | |
<core-collapse id="collapse"> | |
Hello world! | |
</core-collapse> | |
</template> | |
<script> | |
Polymer('my-collapse', { | |
toggle: function() { | |
this.$.collapse.toggle(); | |
} | |
}); | |
</script> | |
</polymer-element> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment