()
| 1294 | }; |
| 1295 | |
| 1296 | var resetScript = function() { |
| 1297 | var c = confirm(I18N.getMessage("Really_reset_all_changes_")); |
| 1298 | if (c) { |
| 1299 | if (container.editor && gOptions.editor_enabled) { |
| 1300 | // set value clears history too |
| 1301 | container.editor.mirror.setValue(i.code); |
| 1302 | } else { |
| 1303 | input.textContent = i.code; |
| 1304 | } |
| 1305 | } |
| 1306 | }; |
| 1307 | |
| 1308 | var lintScript = function() { |
| 1309 | Please.wait(); |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…