diff --git a/src/color/Color.js b/src/color/Color.js index 43660feb..aae50927 100644 --- a/src/color/Color.js +++ b/src/color/Color.js @@ -249,6 +249,8 @@ var Color = this.Color = Base.extend(new function() { /** * Override Color.extend() to produce getters and setters based * on the component types defined in _components. + * + * @ignore */ extend: function(src) { src.beans = true; diff --git a/src/core/Base.js b/src/core/Base.js index b842b7a3..3401c76d 100644 --- a/src/core/Base.js +++ b/src/core/Base.js @@ -60,6 +60,8 @@ this.Base = Base.inject({ * Utility function for adding and removing items from a list of which * each entry keeps a reference to its index in the list in the private * _index property. Used for PaperScope#projects and Item#children. + * + * @ignore */ splice: function(list, items, index, remove) { var amount = items && items.length, @@ -104,6 +106,8 @@ this.Base = Base.inject({ /** * Utility function for rendering numbers to strings at a precision of * up to 5 fractional digits. + * + * @ignore */ formatNumber: function(num) { return (Math.round(num * 100000) / 100000).toString(); @@ -112,6 +116,8 @@ this.Base = Base.inject({ /** * Utility function for rendering objects to strings, in object literal * notation. + * + * @ignore */ formatObject: function(obj) { return '{ ' + Base.each(obj, function(value, key) { diff --git a/src/paper.js b/src/paper.js index ee72d5be..6fc251a8 100644 --- a/src/paper.js +++ b/src/paper.js @@ -35,6 +35,9 @@ * ***/ +/** + * @ignore + */ var paper = new function() { // Inline Bootstrap core (the Base class) inside the paper scope first: //#include "../lib/bootstrap.js"