Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
boolgom committed May 19, 2015
1 parent 0aea1c1 commit 174f7a8
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 23 deletions.
Binary file modified docs/EaselJS_docs-0.8.0.zip
Binary file not shown.
26 changes: 8 additions & 18 deletions lib/easeljs-0.8.0.combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -3601,21 +3601,14 @@ this.createjs = this.createjs||{};
* @type {StrokeStyle}
**/
this._strokeStyle = null;

/**
* @property _oldStrokeStyle
* @protected
* @type {StrokeStyle}
**/
this._oldStrokeStyle = null;


/**
* @property _strokeDash
* @protected
* @type {StrokeDash}
**/
this._strokeDash = null;

/**
* @property _oldStrokeDash
* @protected
Expand Down Expand Up @@ -4042,7 +4035,7 @@ this.createjs = this.createjs||{};
**/
p.clear = function() {
this._instructions.length = this._activeInstructions.length = this._commitIndex = 0;
this._strokeStyle = this._oldStrokeStyle = this._stroke = this._fill = this._strokeDash = this._oldStrokeDash = null;
this._strokeStyle = this._stroke = this._fill = this._strokeDash = this._oldStrokeDash = null;
this._dirty = this._strokeIgnoreScale = false;
return this;
};
Expand Down Expand Up @@ -4168,7 +4161,7 @@ this.createjs = this.createjs||{};
this._strokeIgnoreScale = ignoreScale;
return this;
};

/**
* Sets or clears the stroke dash pattern.
*
Expand Down Expand Up @@ -4816,7 +4809,7 @@ this.createjs = this.createjs||{};
* @protected
**/
p.ss = p.setStrokeStyle;

/**
* Shortcut to setStrokeDash.
* @method sd
Expand Down Expand Up @@ -5024,10 +5017,7 @@ this.createjs = this.createjs||{};
this._oldStrokeDash = this._strokeDash;
instr.push(this._strokeDash);
}
if (this._strokeStyle !== this._oldStrokeStyle) {
this._oldStrokeStyle = this._strokeStyle;
instr.push(this._strokeStyle);
}
instr.push(this._strokeStyle);
instr.push(this._stroke);
}

Expand Down Expand Up @@ -5539,7 +5529,7 @@ this.createjs = this.createjs||{};
ctx.miterLimit = (this.miterLimit == null ? "10" : this.miterLimit);
};
p.path = false;

/**
* Graphics command object. See {{#crossLink "Graphics/setStrokeDash"}}{{/crossLink}} and {{#crossLink "Graphics/append"}}{{/crossLink}} for more information.
* @class StrokeDash
Expand Down Expand Up @@ -12663,6 +12653,6 @@ this.createjs = this.createjs || {};
* @type String
* @static
**/
s.buildDate = /*=date*/"Fri, 15 May 2015 10:03:30 GMT"; // injected by build process
s.buildDate = /*=date*/"Tue, 19 May 2015 08:44:35 GMT"; // injected by build process

})();
6 changes: 3 additions & 3 deletions lib/easeljs-0.8.0.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lib/movieclip-0.8.0.combined.js
Original file line number Diff line number Diff line change
Expand Up @@ -704,6 +704,6 @@ this.createjs = this.createjs || {};
* @type String
* @static
**/
s.buildDate = /*=date*/"Fri, 15 May 2015 10:03:30 GMT"; // injected by build process
s.buildDate = /*=date*/"Tue, 19 May 2015 08:44:35 GMT"; // injected by build process

})();
2 changes: 1 addition & 1 deletion lib/movieclip-0.8.0.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 174f7a8

Please sign in to comment.