File tree 3 files changed +7
-7
lines changed
app/assets/javascripts/backbone
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -4,8 +4,8 @@ class Kandan.Plugins.ImageEmbed
4
4
5
5
template : _ .template '''
6
6
<div class="image-preview">
7
- <a target="_blank" href="<%= image_url %>">
8
- <img class="image-embed" src="<%= image_url %>" height="200" width="200" />
7
+ <a target="_blank" href="<%= imageUrl %>">
8
+ <img class="image-embed" src="<%= imageUrl %>" height="200" width="200" />
9
9
</a>
10
10
<div class="name"><%= subtitle %></div>
11
11
</div>
Original file line number Diff line number Diff line change @@ -6,8 +6,8 @@ class Kandan.Plugins.YouTubeEmbed
6
6
7
7
template : _ .template '''
8
8
<div class="youtube-preview">
9
- <a target="_blank" class="youtube-preview-link" href="<%= video_url %>">
10
- <img class="youtube-preview-image" src="<%= thumb_url %>" />
9
+ <a target="_blank" class="youtube-preview-link" href="<%= videoUrl %>">
10
+ <img class="youtube-preview-image" src="<%= thumbUrl %>" />
11
11
</a>
12
12
<div class="name"><%= subtitle %></div>
13
13
</div>
@@ -27,7 +27,7 @@ class Kandan.Plugins.YouTubeEmbed
27
27
videoUrl = message .content .split (" " )[0 ]
28
28
29
29
videoId = message .content .match (@options .idRegex )[1 ]
30
- thumbUrl = " http://img.youtube.com/vi/#{ video_id } /0.jpg"
30
+ thumbUrl = " http://img.youtube.com/vi/#{ videoId } /0.jpg"
31
31
32
32
subtitle = null
33
33
subtitle = " Youtube: #{ comment} " if comment? and comment .length > 0
Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ class Kandan.Views.ShowActivity extends Backbone.View
5
5
6
6
render : ()->
7
7
activity = @options .activity .toJSON ()
8
- console . log ( " Rendering activity: " )
8
+ activity . content = _ . escape ( activity . content )
9
9
if activity .action != " message"
10
10
@compiledTemplate = JST[' user_notification' ]({activity : activity})
11
11
else
12
12
modifiedMessage = Kandan .Modifiers .process (activity, @options .state )
13
13
if modifiedMessage != false
14
14
@compiledTemplate = modifiedMessage
15
15
else
16
- @compiledTemplate = Kandan .Helpers .Activities .buildFromMessageTemplate $ . extend ( activity, { content : _ . escape ( activity . content )})
16
+ @compiledTemplate = Kandan .Helpers .Activities .buildFromMessageTemplate activity
17
17
18
18
$ (@el ).data (" activity-id" , activity .id )
19
19
$ (@el ).attr (" id" , " activity-#{ activity .id } " )
You can’t perform that action at this time.
0 commit comments