Fix accidental documentation leakage into global scope.

This commit is contained in:
Jürg Lehni 2013-12-28 22:34:00 +01:00
parent 8143144e87
commit 10aa8d7b4a
2 changed files with 3 additions and 1 deletions

View file

@ -775,6 +775,7 @@ var Color = Base.extend(new function() {
/**
* @name Color#clone
* @function
*
* Returns a copy of the color object.
*

View file

@ -12,9 +12,10 @@
/**
* @name Formatter
* @class
* @private
*/
var Formatter = Base.extend({
var Formatter = Base.extend(/** @lends Formatter# */{
/**
* @param {Number} [precision=5] the amount of fractional digits.
*/