File tree 5 files changed +9
-11
lines changed
5 files changed +9
-11
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,7 @@ window.Kandan =
17
17
Plugins : {}
18
18
19
19
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' )
26
21
27
22
# TODO this is a helper method to register plugins
28
23
# in the order required until we come up with plugin management
@@ -133,8 +128,8 @@ window.Kandan =
133
128
registerUtilityEvents : ()->
134
129
window .setInterval (=>
135
130
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 )
138
133
139
134
init : ->
140
135
channels = new Kandan.Collections.Channels ()
Original file line number Diff line number Diff line change 1
1
<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 ) %>
3
3
</span>
4
4
<img class="avatar" src="<%= @activity.avatarUrl %>"/>
5
5
Original file line number Diff line number Diff line change 1
1
<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 ) %>
3
3
</span>
4
4
<img class="avatar" src="<%= @activity.avatarUrl %>"/>
5
5
Original file line number Diff line number Diff line change 1
1
<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 ) %>
3
3
</span>
4
4
<img class="avatar" src="<%= @activity.avatarUrl %>"/>
5
5
Original file line number Diff line number Diff line change 16
16
17
17
:avatar_url : http://gravatar.com/avatar/%{hash}?s=%{size}&d=%{fallback}
18
18
:avatar_fallback : identicon
19
+
20
+ :now_threshold : 3000
21
+ :timestamp_refresh_interval : 2000
You can’t perform that action at this time.
0 commit comments