Created
December 14, 2011 16:34
-
-
Save philippamarkovics/1477322 to your computer and use it in GitHub Desktop.
Timestamp mixin
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
Batman.mixins.timestamp = | |
initialize: -> | |
$timestamp = $(this) | |
timestampWatcher = setInterval (-> | |
if $timestamp.attr("title") isnt "undefined" and $timestamp.attr("title") isnt "" | |
$timestamp.timeago() | |
clearInterval timestampWatcher | |
), 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment