// edit.js - Firefox Editing Tools
// Source: http://inamidst.com/stuff/2008/edit.js
// 
// Copyright 2008, Sean B. Palmer, inamidst.com
// Licensed under the Eiffel Forum License 2.
// Open source, free software; share and enjoy!

function key(e) { 
   if (e.charCode == 98 && e.ctrlKey == true) 
      // document.execCommand('formatblock', false, 'strong'); 
      document.execCommand('bold', false, null); 
}

/*
var uri = prompt('Link', '');
document.execCommand('createlink', false, uri);
*/

function main() { 
   $('p').text('Test'); 
   $('body')[0].contentEditable = true; 
   document.execCommand('useCSS', false, true); 
   $(document).bind('keypress', key); 
}

$(document).ready(main); 

// EOF

