Skip to content

Commit

Permalink
update dev dependencies. close ericdrowell#1015
Browse files Browse the repository at this point in the history
  • Loading branch information
lavrton committed Oct 3, 2014
1 parent a4ea6a6 commit 7f853dd
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 30 deletions.
12 changes: 6 additions & 6 deletions kinetic.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* http://www.kineticjs.com/
* Copyright 2013, Eric Rowell
* Licensed under the MIT or GPL Version 2 licenses.
* Date: 2014-10-02
* Date: 2014-10-03
*
* Copyright (C) 2011 - 2013 by Eric Rowell
*
Expand Down Expand Up @@ -54,7 +54,7 @@ var Kinetic = {};
/**
* Global pixel ratio configuration. KineticJS automatically detect pixel ratio of current device.
* But you may override such property, if you want to use your value.
* @property
* @property pixelRatio
* @default undefined
* @memberof Kinetic
* @example
Expand All @@ -64,7 +64,7 @@ var Kinetic = {};
/**
* Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point,
* only then start dragging.
* @property
* @property dragDistance
* @default 0
* @memberof Kinetic
* @example
Expand All @@ -73,7 +73,7 @@ var Kinetic = {};
dragDistance : 0,
/**
* Use degree values for angle properties. You may set this property to false if you want to use radiant values.
* @property
* @property angleDeg
* @default true
* @memberof Kinetic
* @example
Expand All @@ -84,7 +84,7 @@ var Kinetic = {};
angleDeg: true,
/**
* Show different warnings about errors or wrong API usage
* @property
* @property showWarnings
* @default true
* @memberof Kinetic
* @example
Expand Down Expand Up @@ -14717,7 +14717,7 @@ var Kinetic = {};
height = this.getHeight(),
pointerDirection = this.getPointerDirection(),
pointerWidth = this.getPointerWidth(),
pointerHeight = this.getPointerHeight();
pointerHeight = this.getPointerHeight(),
cornerRadius = this.getCornerRadius();

context.beginPath();
Expand Down
4 changes: 2 additions & 2 deletions kinetic.min.js

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,24 @@
"name": "kinetic",
"version": "5.1.1",
"devDependencies": {
"grunt-contrib-jshint": "0.8.0",
"grunt-contrib-nodeunit": "0.3.2",
"grunt-contrib-uglify": "0.3.2",
"grunt-contrib-concat": "0.3.0",
"grunt-replace": "0.6.2",
"grunt-contrib-clean": "0.5.0",
"mocha": "1.17.1",
"chai": "1.9.0",
"phantomjs": "1.9.7-1",
"mocha-phantomjs": "3.3.2",
"grunt-contrib-jshint": "0.10.0",
"grunt-contrib-nodeunit": "0.4.1",
"grunt-contrib-uglify": "0.6.0",
"grunt-contrib-concat": "0.5.0",
"grunt-replace": "0.7.9",
"grunt-contrib-clean": "0.6.0",
"mocha": "1.21.4",
"chai": "1.9.2",
"phantomjs": "1.9.10",
"mocha-phantomjs": "3.5.0",
"grunt-cli": "0.1.13",
"grunt": "0.4.2",
"connect": "2.13.0",
"grunt-contrib-copy": "~0.5.0",
"jsdoc": "~3.3.0-alpha4",
"grunt-mocha-phantomjs": "~0.4.2",
"grunt-contrib-watch": "~0.5.3",
"grunt-shell": "~0.6.4"
"grunt": "0.4.5",
"connect": "3.2.0",
"grunt-contrib-copy": "~0.6.0",
"jsdoc": "~3.3.0-alpha9",
"grunt-mocha-phantomjs": "~0.6.0",
"grunt-contrib-watch": "~0.6.1",
"grunt-shell": "~1.1.1"
},
"keywords": [
"canvas",
Expand Down
8 changes: 4 additions & 4 deletions src/Global.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ var Kinetic = {};
/**
* Global pixel ratio configuration. KineticJS automatically detect pixel ratio of current device.
* But you may override such property, if you want to use your value.
* @property
* @property pixelRatio
* @default undefined
* @memberof Kinetic
* @example
Expand All @@ -64,7 +64,7 @@ var Kinetic = {};
/**
* Drag distance property. If you start to drag a node you may want to wait until pointer is moved to some distance from start point,
* only then start dragging.
* @property
* @property dragDistance
* @default 0
* @memberof Kinetic
* @example
Expand All @@ -73,7 +73,7 @@ var Kinetic = {};
dragDistance : 0,
/**
* Use degree values for angle properties. You may set this property to false if you want to use radiant values.
* @property
* @property angleDeg
* @default true
* @memberof Kinetic
* @example
Expand All @@ -84,7 +84,7 @@ var Kinetic = {};
angleDeg: true,
/**
* Show different warnings about errors or wrong API usage
* @property
* @property showWarnings
* @default true
* @memberof Kinetic
* @example
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/Label.js
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
height = this.getHeight(),
pointerDirection = this.getPointerDirection(),
pointerWidth = this.getPointerWidth(),
pointerHeight = this.getPointerHeight();
pointerHeight = this.getPointerHeight(),
cornerRadius = this.getCornerRadius();

context.beginPath();
Expand Down

0 comments on commit 7f853dd

Please sign in to comment.