top | item 6004628

(no title)

pleion | 12 years ago

I've added the esc and space to deselect, and shift+redo. Thanks, once you get used to your own hotkeys it gets hard to imagine what other people might want.

As for the hash, the original reason why I went with hash= was to preserve back and forward, but I guess that might not be so necessary considering I have undo and redo.

I know that my clutter can be a bit obnoxious, but just changing it to window.replace(hash) breaks a few other things, so it's left the way it is for now.

There is probably some HTML5 history API way to do it that lets me have back and forward without saving every history entry, I'll look into it.

discuss

order

schiffern|12 years ago

>There is probably some HTML5 history API way to do it that lets me have back and forward without saving every history entry, I'll look into it.

Do you mean the Back & Forward buttons in the browser?

If you can go back/forward to different states, why wouldn't those show up as history entries? I don't think you can decouple the displayed "history" drop-down list from the behavior of the back/forward buttons (for reasons that are probably obvious).

http://html5doctor.com/history-api/

jmilkbal|12 years ago

Perhaps map key codes to object properties with, you know, real names so comparisons to e.keyCode mean something in the future.

  var appKeys = { "Esc": 27 };

  else if (e.keyCode === appKeys.Esc) {
Some JS libs do this for you and there are some nice libs that make key handling convenient and powerful as well.

pleion|12 years ago

Great tip. But I generally only use each reference once, so I'm not sure it would have been worth it in my case.

There are lots of libraries that could have made things more convenient. But a big part of this project was to learn as much as I could about coding, and the browser as an environment, so early on I committed to writing everything myself.

I'd be interested in hearing whether or not other people think this is a good strategy for self teaching.