Doc additions

This commit is contained in:
kangax 2013-02-27 00:48:27 +01:00
parent 17a88e93e1
commit 293227811f
5 changed files with 9 additions and 7 deletions

View file

@ -1,5 +1,5 @@
/**
* @namespace
* @namespace Image filters
*/
fabric.Image.filters = { };

View file

@ -240,7 +240,9 @@
return result;
}
/** @namespace */
/**
* @namespace Array utilities
*/
fabric.util.array = {
invoke: invoke,
min: min,

View file

@ -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
};
})();

View file

@ -51,7 +51,7 @@ function escapeXml(string) {
.replace(/>/g, '>');
}
/** @namespace */
/** @namespace String utilities */
fabric.util.string = {
camelize: camelize,
capitalize: capitalize,

View file

@ -4,7 +4,7 @@
atan2 = Math.atan2;
/**
* @namespace
* @namespace Various utilities
*/
fabric.util = { };