var Example = function(node) { this._node = node; this._source = OZ.DOM.elm("pre", {className:"code"}); this._source.setAttribute("data-syntax", "js"); this._source.addEventListener("click", this); this._ta = OZ.DOM.elm("textarea", {className:"code"}); this._ta.spellcheck = false; this._ta.addEventListener("click", this); this._result = OZ.DOM.elm("pre", {className:"result"}); this._time = OZ.DOM.elm("div", {className:"time"}); this._useCode(node.textContent); } Example.prototype.handleEvent = function(e) { e.stopPropagation(); if (this.constructor.current != this) { this.open(); } } Example.prototype.open = function() { this.constructor.current = this; var height = OZ.Style.get(this._source, "height"); this._ta.style.height = height; this._ta.value = this._source.textContent.trim(); this._source.parentNode.replaceChild(this._ta, this._source); this._ta.focus(); } Example.prototype.close = function() { this.constructor.current = null; var code = this._ta.value; this._useCode(code); } /** * @param {string} code no html entities, plain code */ Example.prototype._useCode = function(code) { this._node.innerHTML = ""; this._result.innerHTML = ""; this._source.innerHTML = ""; this._node.appendChild(this._source); this._node.appendChild(this._result); this._node.appendChild(this._time); this._source.appendChild(OZ.DOM.text(code)); Syntax.apply(this._source); var result = this._result; var show = function() { for (var i=0;i"; }); OZ.Event.add(window, "hashchange", this._hashChange.bind(this)); this._hashChange(); } } Manual.init();