From 661a128f3a3f7bcaac5a33c7f00eb7e790f469d5 Mon Sep 17 00:00:00 2001 From: zuber Date: Tue, 19 Jan 2010 23:17:15 +0100 Subject: [PATCH] =?utf8?q?Otwieranie=20do=20edycji=20motyw=C3=B3w=20i=20pr?= =?utf8?q?zypis=C3=B3w=20zaraz=20po=20ich=20wstawieniu.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit --- platforma/static/js/main.js | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/platforma/static/js/main.js b/platforma/static/js/main.js index ef4e7992..9262c187 100644 --- a/platforma/static/js/main.js +++ b/platforma/static/js/main.js @@ -358,7 +358,9 @@ function html(element) { xml2html({ xml: ''+text+' --- ', success: function(text) { - tag.replaceWith(text); + var t = $(text); + tag.replaceWith(t); + openForEdit(t); }, error: function() { tag.remove(); @@ -366,7 +368,7 @@ function html(element) { } }) } - + function addTheme() { var selection = window.getSelection(); @@ -437,6 +439,7 @@ function html(element) { spoint.insertNode(btag[0]) btag.replaceWith(text); selection.removeAllRanges(); + openForEdit($('.motyw[theme-class=' + id + ']')); } }); } @@ -476,7 +479,6 @@ function html(element) { left: x, top: y, width: w - // right: 0 }).appendTo($box[0].offsetParent || $box.parent()).show(); console.log($overlay, $box[0].offsetParent || $box.parent()); @@ -493,7 +495,7 @@ function html(element) { setTimeout(function() { $('textarea', $overlay).focus(); - }, 100); + }, 50); $('textarea', $overlay).one('blur', function(event) { var nodeName = $box.attr('x-node') || 'pe'; -- 2.20.1