Fixed Typo in previous commit

This commit is contained in:
taxicala 2014-08-27 15:01:12 -03:00
parent 007b36d47c
commit e54cf13d0a

View File

@ -68,7 +68,7 @@ Licensed under the BSD-2-Clause License.
Morris.pad2 = function(number) { Morris.pad2 = function(number) {
return (number < 10 ? '0' : '') + number; return (number < 10 ? '0' : '') + number;
};ou };
Morris.Grid = (function(_super) { Morris.Grid = (function(_super) {
__extends(Grid, _super); __extends(Grid, _super);