1 /*
  2  * © 2009 ROBO Design
  3  * http://www.robodesign.ro
  4  *
  5  * $Date: 2009-04-19 17:24:26 +0300 $
  6  */
  7 
  8 /**
  9  * @author <a lang="ro" href="http://www.robodesign.ro/mihai">Mihai Şucan</a>
 10  * @fileOverview Configuration file for the web application.
 11  */
 12 
 13 /**
 14  * @namespace Holds all the configuration for the paint application.
 15  */
 16 var PainterConfig = {
 17   /**
 18    * The default tool ID.
 19    *
 20    * @type String
 21    * @see PaintTools The object holding all the drawing tools.
 22    */
 23   tool_default: 'line',
 24 
 25   /**
 26    * Keyboard shortcuts associated to drawing tools.
 27    *
 28    * @type Object
 29    * @see PaintTools The object holding all the drawing tools.
 30    */
 31   keys: {
 32     L: { tool: 'line' },
 33     P: { tool: 'pencil' },
 34     R: { tool: 'rect' }
 35   }
 36 };
 37 
 38 
 39 // vim:set spell spl=en fo=wan1croql tw=80 ts=2 sw=2 sts=2 sta et ai cin fenc=utf-8 ff=unix:
 40