mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-02 02:54:43 +00:00
Doc additions
This commit is contained in:
parent
17a88e93e1
commit
293227811f
5 changed files with 9 additions and 7 deletions
|
|
@ -1,5 +1,5 @@
|
|||
/**
|
||||
* @namespace
|
||||
* @namespace Image filters
|
||||
*/
|
||||
fabric.Image.filters = { };
|
||||
|
||||
|
|
|
|||
|
|
@ -240,7 +240,9 @@
|
|||
return result;
|
||||
}
|
||||
|
||||
/** @namespace */
|
||||
/**
|
||||
* @namespace Array utilities
|
||||
*/
|
||||
fabric.util.array = {
|
||||
invoke: invoke,
|
||||
min: min,
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
(function(){
|
||||
|
||||
|
||||
/**
|
||||
* Copies all enumerable properties of one object to another
|
||||
* @memberOf fabric.util.object
|
||||
|
|
@ -25,10 +25,10 @@
|
|||
return extend({ }, object);
|
||||
}
|
||||
|
||||
/** @namespace fabric.util.object */
|
||||
/** @namespace Object utilities */
|
||||
fabric.util.object = {
|
||||
extend: extend,
|
||||
clone: clone
|
||||
};
|
||||
|
||||
|
||||
})();
|
||||
|
|
@ -51,7 +51,7 @@ function escapeXml(string) {
|
|||
.replace(/>/g, '>');
|
||||
}
|
||||
|
||||
/** @namespace */
|
||||
/** @namespace String utilities */
|
||||
fabric.util.string = {
|
||||
camelize: camelize,
|
||||
capitalize: capitalize,
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
atan2 = Math.atan2;
|
||||
|
||||
/**
|
||||
* @namespace
|
||||
* @namespace Various utilities
|
||||
*/
|
||||
fabric.util = { };
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue