Merge pull request #1505 from ether/fix-for-long-strings

very simple fix that might break other things but stops the caret focus ...
This commit is contained in:
John McLear 2013-02-12 11:06:45 -08:00
commit 14dca92692
1 changed files with 4 additions and 0 deletions

View File

@ -176,3 +176,7 @@ p {
}
#overlaysdiv { position: absolute; left: -1000px; top: -1000px; }
.ace-line{
overflow:hidden; /* Stops super long lines without being spaces such as aaaaaaaaaaaaaa*100 breaking the editor */
}