Replace @type function with @type Function.

This commit is contained in:
Jürg Lehni 2011-06-27 15:34:32 +02:00
parent d33e480749
commit b0156c0e8b
2 changed files with 6 additions and 6 deletions

View file

@ -132,7 +132,7 @@ var Tool = this.Tool = Base.extend(/** @lends Tool# */{
* *
* @name Tool#onMouseDown * @name Tool#onMouseDown
* @property * @property
* @type function * @type Function
* *
* @example {@paperscript} * @example {@paperscript}
* // Creating circle shaped paths where the user presses the mouse button: * // Creating circle shaped paths where the user presses the mouse button:
@ -154,7 +154,7 @@ var Tool = this.Tool = Base.extend(/** @lends Tool# */{
* *
* @name Tool#onMouseDrag * @name Tool#onMouseDrag
* @property * @property
* @type function * @type Function
* *
* @example {@paperscript} * @example {@paperscript}
* // Draw a line by adding a segment to a path on every mouse drag event: * // Draw a line by adding a segment to a path on every mouse drag event:
@ -176,7 +176,7 @@ var Tool = this.Tool = Base.extend(/** @lends Tool# */{
* *
* @name Tool#onMouseMove * @name Tool#onMouseMove
* @property * @property
* @type function * @type Function
* *
* @example {@paperscript} * @example {@paperscript}
* // Moving a path to the position of the mouse: * // Moving a path to the position of the mouse:
@ -199,7 +199,7 @@ var Tool = this.Tool = Base.extend(/** @lends Tool# */{
* *
* @name Tool#onMouseUp * @name Tool#onMouseUp
* @property * @property
* @type function * @type Function
* *
* @example {@paperscript} * @example {@paperscript}
* // Creating circle shaped paths where the user releases the mouse: * // Creating circle shaped paths where the user releases the mouse:

View file

@ -320,7 +320,7 @@ var View = this.View = Base.extend(/** @lends View# */{
* path.rotate(3); * path.rotate(3);
* } * }
* *
* @type function * @type Function
* @bean * @bean
*/ */
getOnFrame: function() { getOnFrame: function() {
@ -382,7 +382,7 @@ var View = this.View = Base.extend(/** @lends View# */{
* path.position = view.center; * path.position = view.center;
* } * }
* *
* @type function * @type Function
*/ */
onResize: null onResize: null
}, new function() { // Injection scope for mouse handlers }, new function() { // Injection scope for mouse handlers