Merge pull request #831 from Vaesper/nicklistcolors

Nick list colors now also work without background color
locastorage-fallback
Lorenz Hübschle-Schneider 9 years ago committed by GitHub
commit f4669f37ee
  1. 4
      js/models.js

@ -401,13 +401,13 @@ models.service('models', ['$rootScope', '$filter', 'bufferResume', function($roo
'coa-' + colorName 'coa-' + colorName
]; ];
} else { } else {
if (color.match(/^[a-zA-Z]+[:$]/)) { if (color.match(/^[a-zA-Z]+(:|$)/)) {
// WeeChat color name (foreground) // WeeChat color name (foreground)
var cwfcolor = color.match(/^[a-zA-Z]+/)[0]; var cwfcolor = color.match(/^[a-zA-Z]+/)[0];
colorClasses = [ colorClasses = [
'cwf-' + cwfcolor 'cwf-' + cwfcolor
]; ];
} else if (color.match(/^[0-9]+[:$]/)) { } else if (color.match(/^[0-9]+(:|$)/)) {
// extended color (foreground) // extended color (foreground)
var cefcolor = color.match(/^[0-9]+/)[0]; var cefcolor = color.match(/^[0-9]+/)[0];
colorClasses = [ colorClasses = [

Loading…
Cancel
Save