mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-05 23:17:33 +08:00
54 lines
1.1 KiB
JavaScript
54 lines
1.1 KiB
JavaScript
/*
|
|
* Truncate long strings where is necessary.
|
|
*/
|
|
function truncateLongString( el, chars ) {
|
|
if($.type(el) !== 'string'){
|
|
var input = $.trim(el.text());
|
|
} else {
|
|
var input = $.trim(el);
|
|
}
|
|
|
|
var html = "";
|
|
if( $.type(el) !== 'string' &&
|
|
el.children().hasClass("glyphicon")) {
|
|
html = el.children()[0];
|
|
}
|
|
|
|
if( input.length >= chars ){
|
|
if($.type(el) != 'string') {
|
|
var newText = el.text().slice(0, chars);
|
|
}else {
|
|
var newText = el.slice(0, chars);
|
|
}
|
|
for( var i = newText.length; i > 0; i--){
|
|
if(newText[i] === ' ' && i > 10){
|
|
newText = newText.slice(0, i);
|
|
break;
|
|
}
|
|
}
|
|
|
|
if ( html ) {
|
|
el.html(html.outerHTML + newText + '...' );
|
|
} else {
|
|
if($.type(el) === 'string'){
|
|
return newText + '...';
|
|
} else {
|
|
el.html(newText + '...' );
|
|
}
|
|
}
|
|
} else {
|
|
return el;
|
|
}
|
|
}
|
|
|
|
/*
|
|
* Usefull for converting locals messages to error format
|
|
* (i.e. no dot at the end).
|
|
*/
|
|
String.prototype.strToErrorFormat = function() {
|
|
var length = this.length;
|
|
if (this[length - 1] === ".") {
|
|
length -= 1;
|
|
}
|
|
return this.slice(0, length);
|
|
}
|