Time Ago element using Polymer and Moment.js
Maintained by Bruno Ziiê.
-
Import Web Components' polyfill:
<script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.3.4/platform.js"></script> <script src="//cdnjs.cloudflare.com/ajax/libs/polymer/0.3.4/polymer.js"></script>
-
Import Moment.js library
<script src="lib/moment.min.js"></script>
-
Import Custom Element:
<link rel="import" href="src/time-ago.html">
-
Start using it!
<time-ago datetime="2013-08-25 20:40:00"></time-ago>
Attribute | Options | Default | Description |
---|---|---|---|
datetime |
string | 0000-00-00 00:00:00 |
Date and time in YYYY-MM-DD HH:mm:ss format |
refresh |
boolean | true |
Auto refresh |
delay |
int | 60000 |
Delay to auto refresh (in milliseconds) |
- Fork it!
- Create your feature branch:
git checkout -b my-new-feature
- Commit your changes:
git commit -m 'Add some feature'
- Push to the branch:
git push origin my-new-feature
- Submit a pull request
- v0.0.1 August 25, 2013
- Created timeago element
- v0.0.2 August 26, 2013
- Add delay attribute