mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
2f4f6db133
no issue - add ember-suave dependency - upgrade grunt-jscs dependency - add a new .jscsrc for the client's tests directory that extends from client's base .jscsrc - separate client tests in Gruntfile jscs task so they pick up the test's .jscsrc - standardize es6 usage across client
29 lines
569 B
JavaScript
29 lines
569 B
JavaScript
import Ember from 'ember';
|
|
|
|
const {Helper} = Ember;
|
|
|
|
export default Helper.helper(function (params) {
|
|
if (!params || params.length < 2) {
|
|
return;
|
|
}
|
|
|
|
let el = document.createElement('span');
|
|
let [content, maxCharacters] = params;
|
|
let length;
|
|
|
|
content = content || '';
|
|
length = content.length;
|
|
|
|
el.className = 'word-count';
|
|
|
|
if (length > maxCharacters) {
|
|
el.style.color = '#E25440';
|
|
} else {
|
|
el.style.color = '#9FBB58';
|
|
}
|
|
|
|
el.innerHTML = length;
|
|
|
|
return Ember.String.htmlSafe(el.outerHTML);
|
|
});
|