mirror of
https://github.com/Hopiu/fabric.js.git
synced 2026-05-04 11:54:47 +00:00
Few JSCS fixes
This commit is contained in:
parent
767db47995
commit
e77a810774
5 changed files with 18 additions and 18 deletions
12
dist/fabric.js
vendored
12
dist/fabric.js
vendored
|
|
@ -1499,8 +1499,8 @@ fabric.Collection = {
|
|||
/**
|
||||
* Helper for creation of "classes".
|
||||
* @memberOf fabric.util
|
||||
* @param parent optional "Class" to inherit from
|
||||
* @param properties Properties shared by all instances of this class
|
||||
* @param {Function} [parent] optional "Class" to inherit from
|
||||
* @param {Object} [properties] Properties shared by all instances of this class
|
||||
* (be careful modifying objects defined here as this would affect all instances)
|
||||
*/
|
||||
function createClass() {
|
||||
|
|
@ -22288,10 +22288,10 @@ fabric.util.object.extend(fabric.IText.prototype, /** @lends fabric.IText.protot
|
|||
|
||||
/**
|
||||
* Only available when running fabric on node.js
|
||||
* @param width Canvas width
|
||||
* @param height Canvas height
|
||||
* @param {Object} options to pass to FabricCanvas.
|
||||
* @param {Object} options to pass to NodeCanvas.
|
||||
* @param {Number} width Canvas width
|
||||
* @param {Number} height Canvas height
|
||||
* @param {Object} [options] Options to pass to FabricCanvas.
|
||||
* @param {Object} [nodeCanvasOptions] Options to pass to NodeCanvas.
|
||||
* @return {Object} wrapped canvas instance
|
||||
*/
|
||||
fabric.createCanvasForNode = function(width, height, options, nodeCanvasOptions) {
|
||||
|
|
|
|||
BIN
dist/fabric.min.js.gz
vendored
BIN
dist/fabric.min.js.gz
vendored
Binary file not shown.
12
dist/fabric.require.js
vendored
12
dist/fabric.require.js
vendored
|
|
@ -1499,8 +1499,8 @@ fabric.Collection = {
|
|||
/**
|
||||
* Helper for creation of "classes".
|
||||
* @memberOf fabric.util
|
||||
* @param parent optional "Class" to inherit from
|
||||
* @param properties Properties shared by all instances of this class
|
||||
* @param {Function} [parent] optional "Class" to inherit from
|
||||
* @param {Object} [properties] Properties shared by all instances of this class
|
||||
* (be careful modifying objects defined here as this would affect all instances)
|
||||
*/
|
||||
function createClass() {
|
||||
|
|
@ -22288,10 +22288,10 @@ fabric.util.object.extend(fabric.IText.prototype, /** @lends fabric.IText.protot
|
|||
|
||||
/**
|
||||
* Only available when running fabric on node.js
|
||||
* @param width Canvas width
|
||||
* @param height Canvas height
|
||||
* @param {Object} options to pass to FabricCanvas.
|
||||
* @param {Object} options to pass to NodeCanvas.
|
||||
* @param {Number} width Canvas width
|
||||
* @param {Number} height Canvas height
|
||||
* @param {Object} [options] Options to pass to FabricCanvas.
|
||||
* @param {Object} [nodeCanvasOptions] Options to pass to NodeCanvas.
|
||||
* @return {Object} wrapped canvas instance
|
||||
*/
|
||||
fabric.createCanvasForNode = function(width, height, options, nodeCanvasOptions) {
|
||||
|
|
|
|||
|
|
@ -134,10 +134,10 @@
|
|||
|
||||
/**
|
||||
* Only available when running fabric on node.js
|
||||
* @param width Canvas width
|
||||
* @param height Canvas height
|
||||
* @param {Object} options to pass to FabricCanvas.
|
||||
* @param {Object} options to pass to NodeCanvas.
|
||||
* @param {Number} width Canvas width
|
||||
* @param {Number} height Canvas height
|
||||
* @param {Object} [options] Options to pass to FabricCanvas.
|
||||
* @param {Object} [nodeCanvasOptions] Options to pass to NodeCanvas.
|
||||
* @return {Object} wrapped canvas instance
|
||||
*/
|
||||
fabric.createCanvasForNode = function(width, height, options, nodeCanvasOptions) {
|
||||
|
|
|
|||
|
|
@ -60,8 +60,8 @@
|
|||
/**
|
||||
* Helper for creation of "classes".
|
||||
* @memberOf fabric.util
|
||||
* @param parent optional "Class" to inherit from
|
||||
* @param properties Properties shared by all instances of this class
|
||||
* @param {Function} [parent] optional "Class" to inherit from
|
||||
* @param {Object} [properties] Properties shared by all instances of this class
|
||||
* (be careful modifying objects defined here as this would affect all instances)
|
||||
*/
|
||||
function createClass() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue