Skip to content

Instantly share code, notes, and snippets.

@philippamarkovics
Created December 14, 2011 16:34
Show Gist options
  • Save philippamarkovics/1477322 to your computer and use it in GitHub Desktop.
Save philippamarkovics/1477322 to your computer and use it in GitHub Desktop.
Timestamp mixin
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