Search The ForumSearch   RegisterRegister  LoginLogin

AfterLogic WebMail Pro

 AfterLogic Forum : AfterLogic WebMail Pro
Subject Topic: Copy text does not work after spell check Post ReplyPost New Topic
Author
Message << Prev Topic | Next Topic >>
carluman
Newbie
Newbie
Avatar

Joined: 23 December 2009
Location: United States
Online Status: Offline
Posts: 7
Posted: 23 December 2009 at 8:20am | IP Logged Quote carluman

Looks like a bug to me and it does duplicate on the demo site.

After using spell check if you try to copy the body of the mail it just deletes it and undo does not work

I often will copy what I have typed when submitting a form on the web because of general problems with losing what was typed if the submit fails.
Back to Top View carluman's Profile Search for other posts by carluman
 
carluman
Newbie
Newbie
Avatar

Joined: 23 December 2009
Location: United States
Online Status: Offline
Posts: 7
Posted: 23 December 2009 at 8:22am | IP Logged Quote carluman

I might be missing the edit option but I need to add this to the above post.

I'm using the trial Webmail Pro .net version.
Back to Top View carluman's Profile Search for other posts by carluman
 
carluman
Newbie
Newbie
Avatar

Joined: 23 December 2009
Location: United States
Online Status: Offline
Posts: 7
Posted: 25 December 2009 at 12:06pm | IP Logged Quote carluman

Just wanted to follow up that I got a quick reply and they were able to duplicate the problem and have submitted it to be fixed. What great support!
Back to Top View carluman's Profile Search for other posts by carluman
 
Igor
AfterLogic Support
AfterLogic Support


Joined: 24 June 2008
Location: United States
Online Status: Offline
Posts: 6089
Posted: 29 January 2010 at 2:32am | IP Logged Quote Igor

To fix the issue, isTextChanged function in js/class.html-editor.js file should be modified as follows:
Code:
function isTextChanged(ev) {
    var kw, key, which;
    kw = getCodeAndWhich(ev);
    key = kw.k;
    which = kw.w;

    return (!(ev.ctrlKey==1 || ev.altKey==1) &&
             key != 16 &&  //shift
             key != 17 &&  //ctrl
             key != 18 &&  //alt
             key != 35 &&  //end
             key != 36 &&  //home
             key != 37 &&  //to the right
             key != 38 &&  //up
             key != 39 &&  //to the left
             key != 40 ||  //down
             (key == 0 && which != 0));  // FireFox;
}


--
Regards,
Igor, AfterLogic Support
Back to Top View Igor's Profile Search for other posts by Igor
 

If you wish to post a reply to this topic you must first login
If you are not already registered you must first register

  Post ReplyPost New Topic
Printable version Printable version

Forum Jump

Powered by Web Wiz Forums version 7.9
Copyright ©2001-2004 Web Wiz Guide