![]() |
gino CMS
2.5.0
gino รจ un CMS scritto in PHP che offre tutti gli strumenti necessari per poter creare un sito web e gestire i contenuti al suo interno in maniera semplice ed efficace, svincolando l'amministratore da conoscenze tecniche di programmazione
|
Functions | |
| function | findMatchingBracket (cm, where, strict) |
| function | matchBrackets (cm, autoclear) |
| function | doMatchBrackets (cm) |
| CodeMirror | defineOption ("matchBrackets", false, function(cm, val, old){if(old &&old!=CodeMirror.Init) cm.off("cursorActivity", doMatchBrackets);if(val){cm.state.matchBrackets=typeof val=="object"?val:{};cm.on("cursorActivity", doMatchBrackets);}}) |
| CodeMirror | defineExtension ("matchBrackets", function(){matchBrackets(this, true);}) |
Variables | |
| var | Pos = CodeMirror.Pos |
| var | matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"} |
| var | currentlyHighlighted = null |
| CodeMirror defineExtension | ( | "matchBrackets" | , |
| function(){matchBrackets(this, true);} | |||
| ) |
| CodeMirror defineOption | ( | "matchBrackets" | , |
| false | , | ||
| function(cm, val, old){if(old &&old!=CodeMirror.Init) cm.off("cursorActivity", doMatchBrackets);if(val){cm.state.matchBrackets=typeof val=="object"?val:{};cm.on("cursorActivity", doMatchBrackets);}} | |||
| ) |
| function doMatchBrackets | ( | cm | ) |
| function findMatchingBracket | ( | cm, | |
| where, | |||
| strict | |||
| ) |
| function matchBrackets | ( | cm, | |
| autoclear | |||
| ) |
| var currentlyHighlighted = null |
| var matching = {"(": ")>", ")": "(<", "[": "]>", "]": "[<", "{": "}>", "}": "{<"} |
| var Pos = CodeMirror.Pos |