Sha256: bcf323eacc769ce8b6043780394e2bbc33471752637a7a3aadf091cd21bc1915
Contents?: true
Size: 738 Bytes
Versions: 21
Compression:
Stored size: 738 Bytes
Contents
# Copyright (c) 2008-2013 Michael Dvorkin and contributors. # # Fat Free CRM is freely distributable under the terms of MIT license. # See MIT-LICENSE file or http://www.opensource.org/licenses/mit-license.php #------------------------------------------------------------------------------ (($) -> # Run function on page load $ -> $.timeago.settings.allowFuture = true # our modification to choose correct language $.timeago.settings.strings = $.timeago.settings.locales[crm.language] $("span.timeago").timeago() # update every minute setInterval (-> $("span.timeago").timeago() ), 60000 # Run after $ ajax event $(document).ajaxComplete -> $("span.timeago").timeago() ) jQuery
Version data entries
21 entries across 21 versions & 1 rubygems