()
| 1919 | |
| 1920 | // Cursor-blinking |
| 1921 | function restartBlink() { |
| 1922 | clearInterval(blinker); |
| 1923 | var on = true; |
| 1924 | cursor.style.visibility = ""; |
| 1925 | blinker = setInterval(function() { |
| 1926 | cursor.style.visibility = (on = !on) ? "" : "hidden"; |
| 1927 | }, 650); |
| 1928 | } |
| 1929 | |
| 1930 | var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"}; |
| 1931 | function matchBrackets(autoclear) { |
no outgoing calls
no test coverage detected