File tree Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Expand file tree Collapse file tree 4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -170,6 +170,19 @@ this.createjs = this.createjs||{};
170170 this . removed = false ;
171171 }
172172 var p = Event . prototype ;
173+
174+ /**
175+ * <strong>REMOVED</strong>. Removed in favor of using `MySuperClass_constructor`.
176+ * See {{#crossLink "Utility Methods/extend"}}{{/crossLink}} and {{#crossLink "Utility Methods/promote"}}{{/crossLink}}
177+ * for details.
178+ *
179+ * There is an inheritance tutorial distributed with EaselJS in /tutorials/Inheritance.
180+ *
181+ * @method initialize
182+ * @protected
183+ * @deprecated
184+ */
185+ // p.initialize = function() {}; // searchable for devs wondering where it is.
173186
174187
175188// public methods:
Original file line number Diff line number Diff line change @@ -107,6 +107,19 @@ this.createjs = this.createjs||{};
107107 }
108108 var p = EventDispatcher . prototype ;
109109
110+ /**
111+ * <strong>REMOVED</strong>. Removed in favor of using `MySuperClass_constructor`.
112+ * See {{#crossLink "Utility Methods/extend"}}{{/crossLink}} and {{#crossLink "Utility Methods/promote"}}{{/crossLink}}
113+ * for details.
114+ *
115+ * There is an inheritance tutorial distributed with EaselJS in /tutorials/Inheritance.
116+ *
117+ * @method initialize
118+ * @protected
119+ * @deprecated
120+ */
121+ // p.initialize = function() {}; // searchable for devs wondering where it is.
122+
110123
111124// static public methods:
112125 /**
Original file line number Diff line number Diff line change @@ -163,6 +163,9 @@ this.createjs = this.createjs||{};
163163
164164 var p = createjs . extend ( Timeline , createjs . EventDispatcher ) ;
165165
166+ // TODO: deprecated
167+ // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
168+
166169
167170// events:
168171 /**
Original file line number Diff line number Diff line change @@ -295,6 +295,9 @@ this.createjs = this.createjs||{};
295295 } ;
296296
297297 var p = createjs . extend ( Tween , createjs . EventDispatcher ) ;
298+
299+ // TODO: deprecated
300+ // p.initialize = function() {}; // searchable for devs wondering where it is. REMOVED. See docs for details.
298301
299302
300303// static properties
You can’t perform that action at this time.
0 commit comments