fix little error

This commit is contained in:
Nils Rokita 2012-01-04 15:38:03 +01:00
parent 357dd0a7bc
commit 9944dfc821

View file

@ -2573,10 +2573,11 @@ function OUTER(gscope)
function toggleAttributeOnSelectedLine(attributeName) function toggleAttributeOnSelectedLine(attributeName)
{ {
if (!(rep.selStart && rep.selEnd)) return;
//set the full line to be selected //set the full line to be selected
rep.selStart[1]=0; rep.selStart[1]=0;
rep.selEnd[1]=rep.lines.atIndex(rep.selEnd[0]).text.length rep.selEnd[1]=rep.lines.atIndex(rep.selEnd[0]).text.length;
toggleAttributeOnSelection(attributeName) toggleAttributeOnSelection(attributeName);
} }
editorInfo.ace_toggleAttributeOnSelectedLine = toggleAttributeOnSelectedLine; editorInfo.ace_toggleAttributeOnSelectedLine = toggleAttributeOnSelectedLine;