PATH:
home
/
letacommog
/
winwithd
/
wp-content
/
plugins
/
profile-builder-pro
/
modules
/
class-mustache-templates
CodeMirror.defineMode("mustache", function(config, parserConfig) { var mustacheOverlay = { token: function(stream, state) { var ch; if (stream.match("{{")) { while ((ch = stream.next()) != null) if (ch == "}" && stream.next() == "}") break; stream.eat("}"); return "mustache"; } while (stream.next() != null && !stream.match("{{", false)) {} return null; } }; return CodeMirror.overlayMode(CodeMirror.getMode(config, parserConfig.backdrop || "text/html"), mustacheOverlay); }); jQuery(function(){ var wck_stp_textareas = ["wppb_mustache_template"]; var length = wck_stp_textareas.length; element = null; for ( var i=0; i < length; i++ ){ element = wck_stp_textareas[i]; if ( jQuery( 'textarea[class="' + element + '"]' ).length > 0 ){ jQuery( 'textarea[class|="' + element + '"]' ).each( function(){ var editor = CodeMirror.fromTextArea( this, { mode: "mustache", lineNumbers: true, //lineWrapping:true, extraKeys: { "F11": function(cm) { cm.setOption("fullScreen", !cm.getOption("fullScreen")); }, "Esc": function(cm) { if (cm.getOption("fullScreen")) cm.setOption("fullScreen", false); } } }); }); } } }) jQuery(function() { jQuery( ".stp-extra" ).accordion(); });
[+]
..
[-] class-mustache-templates.php
[edit]
[-] class-mustache-templates.css
[edit]
[-] class-mustache-templates.js
[edit]