- Fixed pagination not refreshing the data...

- Start creating single page of an Event
This commit is contained in:
Paolo Arena
2019-11-06 22:29:29 +01:00
parent a54839e128
commit 0d776589f0
6 changed files with 50 additions and 8 deletions

View File

@@ -314,6 +314,15 @@ module.exports = {
return msg
},
convertTexttoHtml(myhtml) {
// let msg = myhtml;
// msg = msg.replace('\n', '<br>');
// return msg
return myhtml;
},
removeSpecialCharForEmail(myhtml) {
let msg = myhtml;
msg = msg.replace(/"/g, '\'');