mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-20 22:39:50 -05:00
Fix accidental documentation leakage into global scope.
This commit is contained in:
parent
8143144e87
commit
10aa8d7b4a
2 changed files with 3 additions and 1 deletions
|
@ -775,6 +775,7 @@ var Color = Base.extend(new function() {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Color#clone
|
* @name Color#clone
|
||||||
|
* @function
|
||||||
*
|
*
|
||||||
* Returns a copy of the color object.
|
* Returns a copy of the color object.
|
||||||
*
|
*
|
||||||
|
|
|
@ -12,9 +12,10 @@
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @name Formatter
|
* @name Formatter
|
||||||
|
* @class
|
||||||
* @private
|
* @private
|
||||||
*/
|
*/
|
||||||
var Formatter = Base.extend({
|
var Formatter = Base.extend(/** @lends Formatter# */{
|
||||||
/**
|
/**
|
||||||
* @param {Number} [precision=5] the amount of fractional digits.
|
* @param {Number} [precision=5] the amount of fractional digits.
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue