Skip to content

Commit d4a857f

Browse files
committedMar 14, 2013
Moved nowThreshold and timestampRefreshInterval to kandan_settings.yml for consistency.
1 parent d92fb81 commit d4a857f

File tree

5 files changed

+9
-11
lines changed

5 files changed

+9
-11
lines changed
 

‎app/assets/javascripts/backbone/kandan.js.coffee

+3-8
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,7 @@ window.Kandan =
1717
Plugins: {}
1818

1919
options: ->
20-
unless @_options?
21-
@_options = $('body').data('kandan-config')
22-
@_options.nowThreshold = 3000
23-
@_options.timestampRefreshInterval = 2000
24-
return @_options
25-
20+
@_options ?= $('body').data('kandan-config')
2621

2722
# TODO this is a helper method to register plugins
2823
# in the order required until we come up with plugin management
@@ -133,8 +128,8 @@ window.Kandan =
133128
registerUtilityEvents: ()->
134129
window.setInterval(=>
135130
for el in $(".posted_at")
136-
$(el).text (new Date($(el).data("timestamp"))).toRelativeTime(@options().nowThreshold)
137-
, @options().timestampRefreshInterval)
131+
$(el).text (new Date($(el).data("timestamp"))).toRelativeTime(@options().now_threshold)
132+
, @options().timestamp_refresh_interval)
138133

139134
init: ->
140135
channels = new Kandan.Collections.Channels()

‎app/assets/templates/activity_base.jst.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<span class="posted_at">
2-
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options().nowThreshold) %>
2+
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options().now_threshold) %>
33
</span>
44
<img class="avatar" src="<%= @activity.avatarUrl %>"/>
55

‎app/assets/templates/message.jst.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<span class="posted_at">
2-
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options().nowThreshold) %>
2+
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options().now_threshold) %>
33
</span>
44
<img class="avatar" src="<%= @activity.avatarUrl %>"/>
55

‎app/assets/templates/user_notification.jst.eco

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<span class="posted_at">
2-
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options().nowThreshold) %>
2+
<%= new Date(@activity.created_at).toRelativeTime(Kandan.options().now_threshold) %>
33
</span>
44
<img class="avatar" src="<%= @activity.avatarUrl %>"/>
55

‎config/kandan_settings.yml

+3
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,6 @@
1616

1717
:avatar_url: http://gravatar.com/avatar/%{hash}?s=%{size}&d=%{fallback}
1818
:avatar_fallback: identicon
19+
20+
:now_threshold: 3000
21+
:timestamp_refresh_interval: 2000

0 commit comments

Comments
 (0)
Please sign in to comment.