support extended colors in nicklist

with-route-provider
Tor Hveem 12 years ago
parent e8e44d85ce
commit 4596c129f1
  1. 6
      js/models.js

@ -211,7 +211,13 @@ models.service('models', ['$rootScope', '$filter', function($rootScope, $filter)
return [
'cwf-' + color
];
} else if (color.match(/^[0-9]+$/)) {
// extended color
return [
'cef-' + color
];
}
}
return [

Loading…
Cancel
Save