@@ -143,56 +143,41 @@ impl Formatter for HTMLFormatter {
143
143
r##"<script>
144
144
function onEach(arr, func) {{
145
145
if (arr && arr.length > 0 && func) {{
146
- for (var i = 0; i < arr.length; i++) {{
147
- func(arr[i]);
146
+ var length = arr.length;
147
+ var i;
148
+ for (i = 0; i < length; ++i) {{
149
+ if (func(arr[i])) {{
150
+ return true;
151
+ }}
148
152
}}
149
153
}}
154
+ return false;
155
+ }}
156
+
157
+ function onEachLazy(lazyArray, func) {{
158
+ return onEach(
159
+ Array.prototype.slice.call(lazyArray),
160
+ func);
150
161
}}
151
162
152
163
function hasClass(elem, className) {{
153
- if (elem && className && elem.className) {{
154
- var elemClass = elem.className;
155
- var start = elemClass.indexOf(className);
156
- if (start === -1) {{
157
- return false;
158
- }} else if (elemClass.length === className.length) {{
159
- return true;
160
- }} else {{
161
- if (start > 0 && elemClass[start - 1] !== ' ') {{
162
- return false;
163
- }}
164
- var end = start + className.length;
165
- if (end < elemClass.length && elemClass[end] !== ' ') {{
166
- return false;
167
- }}
168
- return true;
169
- }}
170
- if (start > 0 && elemClass[start - 1] !== ' ') {{
171
- return false;
172
- }}
173
- var end = start + className.length;
174
- if (end < elemClass.length && elemClass[end] !== ' ') {{
175
- return false;
176
- }}
177
- return true;
178
- }}
179
- return false;
164
+ return elem && elem.classList && elem.classList.contains(className);
180
165
}}
181
166
182
- onEach (document.getElementsByClassName('rust-example-rendered'), function(e) {{
167
+ onEachLazy (document.getElementsByClassName('rust-example-rendered'), function(e) {{
183
168
if (hasClass(e, 'compile_fail')) {{
184
169
e.addEventListener("mouseover", function(event) {{
185
- e.previousElementSibling.childNodes[0].style.color = '#f00';
170
+ e.parentElement. previousElementSibling.childNodes[0].style.color = '#f00';
186
171
}});
187
172
e.addEventListener("mouseout", function(event) {{
188
- e.previousElementSibling.childNodes[0].style.color = '';
173
+ e.parentElement. previousElementSibling.childNodes[0].style.color = '';
189
174
}});
190
175
}} else if (hasClass(e, 'ignore')) {{
191
176
e.addEventListener("mouseover", function(event) {{
192
- e.previousElementSibling.childNodes[0].style.color = '#ff9200';
177
+ e.parentElement. previousElementSibling.childNodes[0].style.color = '#ff9200';
193
178
}});
194
179
e.addEventListener("mouseout", function(event) {{
195
- e.previousElementSibling.childNodes[0].style.color = '';
180
+ e.parentElement. previousElementSibling.childNodes[0].style.color = '';
196
181
}});
197
182
}}
198
183
}});
0 commit comments