Lines Matching refs:dialog
41 var dialog = this;
68 dialog.textArea.focus();
69 dialog.textArea.form.parentNode.removeChild(dialog.div);
70 dialog.visible = false;
71 dialog.div = null;
72 dialog.textArea = null;
76 var selection = getSelection(dialog.textArea);
78 dialog.sack.setVar("call", "crypto_decrypt");
79 dialog.sack.setVar("secret", escape($('decrypt_dialog_password').value));
80 dialog.sack.setVar("data", getSelection(dialog.textArea).getText());
81 dialog.sack.onCompletion = function() {
82 if (dialog.sack.response) {
83 pasteText(selection, unescape(dialog.sack.response));
97 dialog.sack.runAJAX();