File tree 2 files changed +4
-4
lines changed
app/assets/javascripts/backbone
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ class Kandan.Helpers.Channels
31
31
if $(document).data('active-channel-id') == undefined
32
32
return $("#kandan .ui-tabs-panel")
33
33
.eq(@selectedTab())
34
- .data("channel_id ")
34
+ .data("channel-id ")
35
35
else
36
36
return $(document).data("active-channel-id")
37
37
@@ -59,7 +59,7 @@ class Kandan.Helpers.Channels
59
59
@getChannelIdByTabIndex: (tabIndex)->
60
60
$("#kandan .ui-tabs-panel")
61
61
.eq(tabIndex)
62
- .data("channel_id ")
62
+ .data("channel-id ")
63
63
64
64
@getTabIndexByChannelId: (channelId)->
65
65
$("#channels-#{channelId}").prevAll("div").length
@@ -128,7 +128,7 @@ class Kandan.Helpers.Channels
128
128
activityAttributes["created_at"] = new Date()
129
129
for el in $channelElements
130
130
$(el).append(@newActivityView(activityAttributes).render().el)
131
- @flushActivities($(el).closest(".ui-widget-content").data("channel_id "))
131
+ @flushActivities($(el).closest(".ui-widget-content").data("channel-id "))
132
132
@setPaginationData(activityAttributes.channel_id)
133
133
134
134
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class Kandan.Views.ChannelPane extends Backbone.View
11
11
12
12
setIdAndData : (container )->
13
13
$ (container).attr " id" , " channels-#{ @options .channel .get (" id" )} "
14
- $ (container).data " channel_id " , @options .channel .get (' id' )
14
+ $ (container).data " channel-id " , @options .channel .get (' id' )
15
15
16
16
paginatedActivitiesView : ()->
17
17
view = new Kandan.Views.PaginatedActivities ({channel : @options .channel })
You can’t perform that action at this time.
0 commit comments