Skip to content

Commit

Permalink
Use webcomponents.org to show Polymer demos & docu
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronny Roeller committed Jun 16, 2017
1 parent 0882aec commit cdacfcc
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 6 deletions.
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,3 @@ before_script:
- $(npm bin)/polylint --no-recursion
script:
- xvfb-run $(npm bin)/wct
after_success: '[ ${TRAVIS_PULL_REQUEST} = "false" ] && [ ${TRAVIS_BRANCH} = "master"] && $(npm bin)/bower install -s https://${GH_TOKEN}@github.com/Collaborne/collaborne-build-tools.git && bower_components/collaborne-build-tools/gpages_build.sh Collaborne info@collaborne.com'
env:
secure: "RZsTdnad+JQ2sbJyIvr7xXc0C25f2oBUBwfOuZxDlugCk+v0PE3b9FxmCZuZbD+Ar1LyUAgOQWsDeKkINeaNmOCuzVwPS7/Jen/NMiB+poax6O6rzvZoQIMUYVtfRlq+aLtie9BmYrrZrPuQO06l42jb3zAHiPUXZAzTJAddW+2lCplpUXNTVwca5kOugB9o9DVX/JF9KUWzclz3qKg09LLTUonXrlyJLsindFfKg92K9zL7nOJmHV/Ux3F2c6cAsi0b45sHIKjHVLP0hmegEQQ9IQZnFdj39cV/c8QMlGksr84NoyRp6nd0XePGlHZDWbZnpO77INBzoRXKYJXOXTqroKaOmB3zBFny8nnfLQymXtH2XcBWID037ph+gRaO4WqZZ56RiOZ/I8HUt1z75mDwFUlySoqs+YQsh54tgLch9d6BBESMeH43b4f08/vd4PTkUUsYMy3Y9MWce5lv/0QZEyjtG7V1T/lqr3Z1QusanJ/4vwpmm9ddq007JtLtRnFIP0OZflkjaSeJob0oUTnkm1dG6Iva9xVO5e9RMtUeEw3/QIXhlLqxcPsvsoyvoDLSA9T1LJdOANFoVD/uF8AQI6IdSPNhCovZ05GGYCQzO7r/Aw9gIPrAOz62xIqPZcEJwP5dORNRoew0UzclW66I4Gx64e0AadtVdjxAkPs="
31 changes: 28 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
_[Demo and API Docs](http://collaborne.github.io/paper-random-term-card)_

paper-random-term-card [![Build Status](https://travis-ci.org/Collaborne/paper-random-term-card.svg?branch=master)](https://travis-ci.org/Collaborne/paper-random-term-card)
paper-random-term-card [![Build Status](https://travis-ci.org/Collaborne/paper-random-term-card.svg?branch=master)](https://travis-ci.org/Collaborne/paper-random-term-card) [![Published on webcomponents.org](https://img.shields.io/badge/webcomponents.org-published-blue.svg)](https://www.webcomponents.org/Collaborne/paper-random-term-card)
=========

A Material Design card that displays a random term from the given array (Polymer)
Expand All @@ -9,6 +7,33 @@ A Material Design card that displays a random term from the given array (Polymer

`bower install paper-random-term-card`

<!--
```
<custom-element-demo>
<template>
<link rel="import" href="my-element.html">
<next-code-block></next-code-block>
</template>
</custom-element-demo>
```
-->
```html
<paper-random-term-card
id="random"
selected="----"
values="[[values]]">
</paper-random-term-card>

<script>
values = [
"Value 1",
"Value 2",
"Value 3",
"Value 4"
];
</script>
```

## License

This software is licensed under the Apache 2 license, quoted below.
Expand Down

0 comments on commit cdacfcc

Please sign in to comment.