Hi,

There is a bug with the editor that I noticed and others noticed too. When you post a very long code segment (or maybe just a long post, period), at some point it seems to overflow the capacity of the editor and you can no longer scroll all the way to the end of the post. The scroller becomes weird and jumps around, but you can never get to actually see the latter end of the post in the editor. You can still edit the content after where the editor stops, and that content still turns up in the final post, but you can't see what you are writing (except through the live preview, which is of course not viable for that purpose).

Recommended Answers

All 7 Replies

I experienced this too, pyTony reported it I think. I posted a long code snippet and when I went to edit it I couldn't get past about the 221st line.

I'm experiencing the same problem, I noticed that I cannot scroll over ~210 lines (sometimes 200, sometimes 220), the scrollbar stops but the cursor can go further. I can reproduce the issue just by pasting the result of this script:

<?php
    $a = range(0,300);
    $n = count($a);
    $result = null;

    for($i=0;$i<$n;$i++)
    {
        $result .= $i . "\n";
    }
    file_put_contents('this.log',$result);
?>

This problem occurs to me in Google Chrome, Opera and Firefox. I'm using Ubuntu 12.04. Bye!

Hi,

Please post a test case I can easily copy/paste. Thanks!

0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239

See how far you can edit that list of number.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.