mirror of
https://github.com/scratchfoundation/paper.js.git
synced 2025-01-03 19:45:44 -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
|
||||
* @function
|
||||
*
|
||||
* Returns a copy of the color object.
|
||||
*
|
||||
|
|
|
@ -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.
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue