X-Git-Url: https://git.mdrn.pl/redakcja.git/blobdiff_plain/6452ce53707b8e5c3f9ef95dd3793284272398e4..97a4b964820b9df287829d5b52c5d0b807d51121:/redakcja/static/js/button_scripts.js diff --git a/redakcja/static/js/button_scripts.js b/redakcja/static/js/button_scripts.js index e7b1c42a..2a585dc5 100644 --- a/redakcja/static/js/button_scripts.js +++ b/redakcja/static/js/button_scripts.js @@ -258,18 +258,18 @@ function ScriptletCenter() ScriptletCenter.prototype.callInteractive = function(opts) { $progress = $('Executing script'); var self = this; - + /* This won't work, 'cause the JS below might be synchronous :( */ /* var timer = setTimeout(function() { $.blockUI({message: $progress}); timer = null; }, 1000); */ - + $.blockUI({message: $progress, showOverlay: false}); self.scriptlets[opts.action](opts.context, opts.extra, function(){ - /*if(timer) - clearTimeout(timer); + /*if(timer) + clearTimeout(timer); else */ $.unblockUI(); // done }); @@ -282,7 +282,7 @@ ScriptletCenter.prototype.XMLEditorSelectedText = function(editor) { ScriptletCenter.prototype.XMLEditorReplaceSelectedText = function(editor, replacement) { - $progress.html("Replacing text"); + $progress.html("Replacing text"); editor.replaceSelection(replacement); };