summaryrefslogtreecommitdiff
path: root/program/js
diff options
context:
space:
mode:
authorthomascube <thomas@roundcube.net>2011-12-05 12:29:55 +0000
committerthomascube <thomas@roundcube.net>2011-12-05 12:29:55 +0000
commitac9ba4480ddf137987b5ae98a644d5c620c50f3b (patch)
tree9facfa84f30852611443460f9d7d02d94c4057f0 /program/js
parent9b28484859b663e0321a1d49a6525b8ef34cd300 (diff)
Replace prompt() with jQuery UI dialog (#1485135)
Diffstat (limited to 'program/js')
-rw-r--r--program/js/app.js31
1 files changed, 22 insertions, 9 deletions
diff --git a/program/js/app.js b/program/js/app.js
index c0268d4fd..c31a69788 100644
--- a/program/js/app.js
+++ b/program/js/app.js
@@ -907,7 +907,7 @@ function rcube_webmail()
if (!this.gui_objects.messageform)
break;
- if (!this.check_compose_input())
+ if (!props.nocheck && !this.check_compose_input(command))
break;
// Reset the auto-save timer
@@ -2960,7 +2960,7 @@ function rcube_webmail()
};
// checks the input fields before sending a message
- this.check_compose_input = function()
+ this.check_compose_input = function(cmd)
{
// check input fields
var ed, input_to = $("[name='_to']"),
@@ -2995,15 +2995,28 @@ function rcube_webmail()
// display localized warning for missing subject
if (input_subject.val() == '') {
- var subject = prompt(this.get_label('nosubjectwarning'), this.get_label('nosubject'));
+ var myprompt = $('<div class="prompt">').html('<div class="message">' + this.get_label('nosubjectwarning') + '</div>').appendTo(document.body);
+ var prompt_value = $('<input>').attr('type', 'text').attr('size', 30).appendTo(myprompt).val(this.get_label('nosubject'));
- // user hit cancel, so don't send
- if (!subject && subject !== '') {
+ var buttons = {};
+ buttons[this.get_label('cancel')] = function(){
input_subject.focus();
- return false;
- }
- else
- input_subject.val((subject ? subject : this.get_label('nosubject')));
+ $(this).dialog('close');
+ };
+ buttons[this.get_label('sendmessage')] = function(){
+ input_subject.val(prompt_value.val());
+ $(this).dialog('close');
+ ref.command(cmd, { nocheck:true }); // repeat command which triggered this
+ };
+
+ myprompt.dialog({
+ modal: true,
+ resizable: false,
+ buttons: buttons,
+ close: function(event, ui) { $(this).remove() }
+ });
+ prompt_value.select();
+ return false;
}
// Apply spellcheck changes if spell checker is active