Skip to content

Commit 96c096d

Browse files
committed
Data attribute channel_id is now channel-id
Signed-off-by: Akash Manohar J <akash@akash.im>
1 parent 38b7377 commit 96c096d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

app/assets/javascripts/backbone/helpers/channels.js.coffee.erb

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class Kandan.Helpers.Channels
3131
if $(document).data('active-channel-id') == undefined
3232
return $("#kandan .ui-tabs-panel")
3333
.eq(@selectedTab())
34-
.data("channel_id")
34+
.data("channel-id")
3535
else
3636
return $(document).data("active-channel-id")
3737

@@ -59,7 +59,7 @@ class Kandan.Helpers.Channels
5959
@getChannelIdByTabIndex: (tabIndex)->
6060
$("#kandan .ui-tabs-panel")
6161
.eq(tabIndex)
62-
.data("channel_id")
62+
.data("channel-id")
6363

6464
@getTabIndexByChannelId: (channelId)->
6565
$("#channels-#{channelId}").prevAll("div").length
@@ -128,7 +128,7 @@ class Kandan.Helpers.Channels
128128
activityAttributes["created_at"] = new Date()
129129
for el in $channelElements
130130
$(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"))
132132
@setPaginationData(activityAttributes.channel_id)
133133

134134

app/assets/javascripts/backbone/views/channel_pane.js.coffee

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class Kandan.Views.ChannelPane extends Backbone.View
1111

1212
setIdAndData: (container)->
1313
$(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')
1515

1616
paginatedActivitiesView: ()->
1717
view = new Kandan.Views.PaginatedActivities({channel: @options.channel})

0 commit comments

Comments
 (0)