Home
last modified time | relevance | path

Searched refs:newSubstr (Results 1 – 2 of 2) sorted by relevance

/plugin/emoji/script/
Djquery.textcomplete.js1095 var newSubstr = strategy.replace(value, e);
1097 if (typeof newSubstr !== 'undefined') {
1098 if ($.isArray(newSubstr)) {
1099 post = newSubstr[1] + post;
1100 newSubstr = newSubstr[0];
1103 pre = pre.replace(regExp, newSubstr);
1169 var newSubstr = strategy.replace(value, e);
1171 if (typeof newSubstr !== 'undefined') {
1172 if ($.isArray(newSubstr)) {
1173 post = newSubstr[1] + post;
[all …]
/plugin/diagramsnet/lib/js/diagramly/
DDialogs.js7155 function replaceInLabel(str, substr, newSubstr, startIndex, style) argument
7160 …return replStart < 0? str : str.substr(0, replStart) + newSubstr + str.substr(replStart + substr.l…
7183 var newSubstr = mxUtils.htmlEntities(newSubstr);
7186 var newStr = str.substr(0, replStart) + newSubstr + str.substr(replEnd);
7202 var inPos = tagPos[i] + (newSubstr.length - substr.length);