CharacterStyle: Use 'sans-serif' as default font.

This commit is contained in:
Jonathan Puckey 2011-05-16 15:58:10 +02:00
parent 6dbecffd85
commit 4ebb6985d6

View file

@ -17,7 +17,7 @@
var CharacterStyle = this.CharacterStyle = PathStyle.extend({
initialize: function(style) {
this.fontSize = style.fontSize || 10;
this.font = style.font || 'Helvetica Regular';
this.font = style.font || 'sans-serif';
this.base(style);
},