MCPcopy Create free account
hub / github.com/csev/py4e / restartBlink

Function restartBlink

tools/pythonauto/static/codemirrorepl/codemirrorepl.js:1921–1928  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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) {

Callers 4

handleKeyBindingFunction · 0.70
handleCharBindingFunction · 0.70
onFocusFunction · 0.70
endOperationFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected