X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/3913c541b2e25e10d9c80feef9d32b80d2bad82b..1a65a8d09e07f68e9dde662430719cfa84a0fd77:/project/static/js/app.js?ds=sidebyside diff --git a/project/static/js/app.js b/project/static/js/app.js index 2210654b..fde15393 100644 --- a/project/static/js/app.js +++ b/project/static/js/app.js @@ -49,20 +49,21 @@ if (typeof console === 'undefined') { this.render_template = function render_template(str, data){ // Figure out if we're getting a template, or if we need to - // load the template - and be sure to cache the result. + // load the template - and be sure to cache the result. var fn = !/^[\d\s-_]/.test(str) ? cache[str] = cache[str] || render_template(document.getElementById(str).innerHTML) : // Generate a reusable function that will serve as a template // generator (and which will be cached). + new Function("obj", "var p=[],print=function(){p.push.apply(p,arguments);};" + // Introduce the data as local variables using with(){} "with(obj){p.push('" + - // Convert the template into pure JavaScript + // Convert the template into pure JavaScript str .replace(/[\r\t\n]/g, " ") .split("<%").join("\t") @@ -181,5 +182,4 @@ Editor.Object = Class.extend({ Editor.Object._lastGuid = 0; - var panels = [];