Update src/static/js/pad_editor.js

use alternative monospace fonts on mac and windows when present
This commit is contained in:
nareshv 2012-12-05 12:14:41 +05:30
parent b82af40735
commit f09ecf0b10

View file

@ -109,7 +109,9 @@ var padeditor = (function()
self.ace.setProperty("showsauthorcolors", !settings.noColors);
v = getOption('useMonospaceFont', false);
self.ace.setProperty("textface", (v ? "monospace" : "Arial, sans-serif"));
// use Ayuthaya font on MacOS Family, Consolas on Windows Family and Monospace on Linux Family
// for better readability of font
self.ace.setProperty("textface", (v ? "Ayuthaya, Consolas, monospace" : "Arial, sans-serif"));
$("#viewfontmenu").val(v ? "monospace" : "normal");
},
dispose: function()