mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
0f17378b26
Refs #4001 - grunt-jscs@0.8.1 which provides ES6 support.
19 lines
448 B
JavaScript
19 lines
448 B
JavaScript
var countCharacters = Ember.Handlebars.makeBoundHelper(function (content) {
|
|
var el = document.createElement('span'),
|
|
length = content ? content.length : 0;
|
|
|
|
el.className = 'word-count';
|
|
|
|
if (length > 180) {
|
|
el.style.color = '#E25440';
|
|
} else {
|
|
el.style.color = '#9E9D95';
|
|
}
|
|
|
|
el.innerHTML = 200 - length;
|
|
|
|
return new Ember.Handlebars.SafeString(el.outerHTML);
|
|
});
|
|
|
|
export default countCharacters;
|