fix typo in getFontSize

This commit is contained in:
nightwing 2013-04-20 16:49:34 +04:00
commit 9dd309469c

View file

@ -344,8 +344,8 @@ var Editor = function(renderer, session) {
* Gets the current font size of the editor text.
*/
this.getFontSize = function () {
return this.setOption("fontSize") ||
dom.computedStyle(ace.container, "fontSize")
return this.getOption("fontSize") ||
dom.computedStyle(this.container, "fontSize");
};
/**