Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -39,3 +39,4 @@ mizzao:user-status
dburles:eslint
kevohagan:sweetalert
mizzao:autocomplete
mattimo:emoticons
2 changes: 2 additions & 0 deletions .meteor/versions
2 changes: 2 additions & 0 deletions client/lib/spacebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ UI.registerHelper('simpleFormat', (text) => {
});
};
text = linkify(text);
//filter the emoticons symbol and replace with emo icons images
text = Blaze._globalHelpers.parseEmoticons(text);
carriage_returns = /\r\n?/g;
paragraphs = /\n\n+/g;
newline = /([^\n]\n)(?=[^\n])/g;
Expand Down