File tree 2 files changed +1
-4
lines changed
app/assets/javascripts/backbone
2 files changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ class Kandan.Plugins.Emoticons
3
3
@options :
4
4
regex : / \( [a-zA-Z ] + \) / g
5
5
template : _ .template '''
6
- <img class="emoticon-embed" src="/assets/emoticons/<%= emoticon %>" height="30 " width="30 " />
6
+ <img class="emoticon-embed" src="/assets/emoticons/<%= emoticon %>" height="40 " width="40 " />
7
7
'''
8
8
9
9
@@ -39,10 +39,8 @@ class Kandan.Plugins.Emoticons
39
39
emoticon = @emoticons [match]
40
40
needle = match .replace (' (' , ' \\ (' ).replace (' )' , ' \\ )' )
41
41
search = new RegExp (needle, ' g' )
42
- console .log (search)
43
42
replacement = @options .template ({ emoticon : emoticon })
44
43
message .content = message .content .replace (search, replacement) if emoticon
45
- console .log (message .content )
46
44
return Kandan .Helpers .Activities .buildFromBaseTemplate (message)
47
45
48
46
# Kandan.Plugins.register "Kandan.Plugins.Emoticons"
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ class Kandan.Views.ChannelPane extends Backbone.View
3
3
4
4
render : (container )->
5
5
container = container || $ (@el )
6
- console .log (" channel view render" , container);
7
6
$ (container).html @ paginatedActivitiesView ()
8
7
$ (container).append @ chatboxView ()
9
8
@ setIdAndData (container)
You can’t perform that action at this time.
0 commit comments