Home | History | Annotate | Download | only in resources

Lines Matching full:maxlength

137 Page.prototype.truncateString_ = function(str, maxLength) {
138 if (str.length > maxLength) {
139 return str.substr(0, maxLength - 3) + '...';