Changeset d1d9fd8 in github
- Timestamp:
- Apr 8, 2011 3:44:19 AM (2 years ago)
- Branches:
- master, HEAD, courier-fix, dev-browser-capabilities, pdo, release-0.6, release-0.7, release-0.8
- Children:
- ff10f5e
- Parents:
- d483cd7
- File:
-
- 1 edited
-
program/js/app.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
program/js/app.js
rec045b0 rd1d9fd8 3022 3022 { 3023 3023 // check input fields 3024 var value_to = $("[name='_to']").val();3025 var value_cc = $("[name='_cc']").val();3026 var value_bcc = $("[name='_bcc']").val();3027 var value_subject = $("[name='_subject']").val();3028 var str = '';3024 var ed, str = '', 3025 value_to = $("[name='_to']").val(), 3026 value_cc = $("[name='_cc']").val(), 3027 value_bcc = $("[name='_bcc']").val(), 3028 value_subject = $("[name='_subject']").val(); 3029 3029 3030 3030 if (value_to) … … 3037 3037 str += value_subject+':'; 3038 3038 3039 var editor = tinyMCE.get(this.env.composebody); 3040 if (editor) 3041 str += editor.getContent(); 3039 if (window.tinyMCE && (ed = tinyMCE.get(this.env.composebody))) 3040 str += ed.getContent(); 3042 3041 else 3043 3042 str += $("[name='_message']").val(); … … 3985 3984 this.env.contactfolders[newkey].id = prop.newid; 3986 3985 this.env.group = prop.newid; 3987 3986 3988 3987 var newprop = $.extend({}, prop); 3989 3988 newprop.id = prop.newid; 3990 3989 newprop.type = 'group'; 3991 3990 3992 3991 link = $('<a>').attr('href', '#') 3993 3992 .attr('rel', prop.source+':'+prop.newid) … … 4009 4008 if (!elem) 4010 4009 elem = $('.ff_' + col); 4011 4010 4012 4011 elem.focus(function(){ ref.focus_textfield(this); }) 4013 4012 .blur(function(){ ref.blur_textfield(this); })
Note: See TracChangeset
for help on using the changeset viewer.
