looking in the javascript there is a save entry in
EA.prototype.execCommand but further down where execCommands are
executed in the keyDown function, there is no Ctrl-s call.  I just
tried ctrl-y and ctrl-z and they work.

I just added case "s" after case "y" like this:

            case "s":
                use = true;
                eA.execCommand("save");
                break;


and now ctrl-s works since the code is still there in the
EA.prototype.execCommand function.

In the last few weeks I'm sure I used command-s to do a save.
Apparently this has been taken out of this revision??

-wj

On Tue, Mar 16, 2010 at 10:28 AM, stephen <[email protected]> wrote:
> Hello,
>
> The admin file editor is not saving files when you press Ctrl-S. It
> was working before revision
>

<snip>

-- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/web2py?hl=en.

Reply via email to