Skip to content

Instantly share code, notes, and snippets.

@maiha
Created April 24, 2009 10:24
Show Gist options
  • Save maiha/101050 to your computer and use it in GitHub Desktop.
Save maiha/101050 to your computer and use it in GitHub Desktop.
Xinha.prototype._shortCuts = function (ev)
{
var key = this.getKey(ev).toLowerCase();
var cmd = null;
var value = null;
switch (key)
{
// simple key commands follow
case 'b': cmd = "bold"; break;
case 'i': cmd = "italic"; break;
case 'u': cmd = "underline"; break;
case 's': cmd = "strikethrough"; break;
case 'l': cmd = "justifyleft"; break;
case 'e': cmd = "justifycenter"; break;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment