Strip slashes off the front of tooltips
This commit is contained in:
parent
69240d41b0
commit
0116320d2c
1 changed files with 2 additions and 2 deletions
|
@ -642,9 +642,9 @@ var configuratorApp = (function(){
|
||||||
var r, s;
|
var r, s;
|
||||||
findDef = new RegExp('(([ \\t]*(//|#)[^\n]+\n){1,4})([ \\t]*\n){0,1}' + info.line, 'g');
|
findDef = new RegExp('(([ \\t]*(//|#)[^\n]+\n){1,4})([ \\t]*\n){0,1}' + info.line, 'g');
|
||||||
if (r = findDef.exec(txt)) {
|
if (r = findDef.exec(txt)) {
|
||||||
findDef = new RegExp('^[ \\t]*(//+[ \\t]*.*)[ \\t]*$', 'gm');
|
findDef = new RegExp('^[ \\t]*//+[ \\t]*(.*)[ \\t]*$', 'gm');
|
||||||
while((s = findDef.exec(r[1])) !== null) {
|
while((s = findDef.exec(r[1])) !== null) {
|
||||||
if (s[1].match(/^\/\/[ \\t]*#define[ \\t]/) != null) {
|
if (s[1].match(/^#define[ \\t]/) != null) {
|
||||||
comment = '';
|
comment = '';
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue