@@ -11,10 +11,14 @@ class Kandan.Helpers.Channels
11
11
scrollPercentage > @options .autoScrollThreshold
12
12
13
13
@ scrollToLatestMessage: (channelId )->
14
- $ (document ).scrollTop ($ (document ).height ()+ 9000 )
14
+ if channelId
15
+ theScrollArea = $ (' #channels-' + channelId)
16
+ theScrollArea .scrollTop (theScrollArea .prop (' scrollHeight' ))
17
+ else
18
+ $ (' .channels-pane' ).scrollTop ($ (' .channels-pane' ).prop (' scrollHeight' ))
15
19
16
20
@ currentScrollPosition: (channelId )->
17
- $ (document ).scrollTop ()
21
+ $ (' channels-pane ' ).scrollTop ()
18
22
19
23
@ channelActivitiesEl: (channelId )->
20
24
$ (" #channel-activities-#{ channelId} " )
@@ -34,6 +38,7 @@ class Kandan.Helpers.Channels
34
38
return $ (document ).data (" active-channel-id" )
35
39
36
40
41
+
37
42
@ confirmDeletion: ()->
38
43
return confirm (" Really delete the channel?" )
39
44
@@ -57,7 +62,7 @@ class Kandan.Helpers.Channels
57
62
@ getChannelIdByTabIndex: (tabIndex )->
58
63
$ (" #kandan .ui-tabs-panel" )
59
64
.eq (tabIndex)
60
- .data (" channel-id" )
65
+ .data (" channel-id" )
61
66
62
67
@ getTabIndexByChannelId: (channelId )->
63
68
$ (" #channels-#{ channelId} " ).prevAll (" div" ).length
@@ -90,6 +95,7 @@ class Kandan.Helpers.Channels
90
95
view = new Kandan.Views.ChannelPane ({channel : channel})
91
96
view .render $ (channelArea)
92
97
$ (channelArea).data (" channel_id" , channel .get (" id" ))
98
+
93
99
94
100
95
101
@ newActivityView: (activityAttributes )->
0 commit comments