Fix linting errors

This commit is contained in:
Serafeim Papastefanos 2019-07-03 10:20:14 +03:00
parent aaa49b7f5b
commit 8067e3973e
1 changed files with 2 additions and 2 deletions

View File

@ -239,12 +239,12 @@ weechat.filter('prefixlimit', function() {
weechat.filter('codify', function() {
return function(text) {
var re = /(`[^``]+`)/g
var re = /(`[^``]+`)/g;
return text.replace(re, function(z) {
var rr = '<code>' + z.slice(1, z.length-1) + '</code>';
return rr;
})
});
};
});