Skip to content

Commit f4bccad

Browse files
committed
Updated libs and docs
1 parent d5c9809 commit f4bccad

File tree

3 files changed

+19
-19
lines changed

3 files changed

+19
-19
lines changed

docs/TweenJS_docs-NEXT.zip

356 Bytes
Binary file not shown.

lib/tweenjs-NEXT.combined.js

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1494,34 +1494,34 @@ this.createjs = this.createjs||{};
14941494
// getter / setters:
14951495

14961496
/**
1497-
* A chainable method that has the same effect as the {{#crossLink "AbstractTween/paused:property"}}{{/crossLink}}
1498-
* property.
1499-
* @method _setPaused
1497+
* Deprecated in favor of the {{#crossLink "AbstractTween/paused:property"}}{{/crossLink}} property.
1498+
* @method setPaused
15001499
* @param {Boolean} [value=true] Indicates whether the tween should be paused (`true`) or played (`false`).
1501-
* @protected
1502-
* @return {Tween} This tween instance (for chaining calls)
1500+
* @deprecated
1501+
* @return {AbstractTween} This tween instance (for chaining calls)
1502+
* @chainable
15031503
*/
1504-
p._setPaused = function(value) {
1504+
p.setPaused = function(value) {
15051505
createjs.Tween._register(this, value);
15061506
return this;
15071507
};
15081508

15091509
/**
1510-
* Use the {{#crossLink "AbstractTween/paused:property"}}{{/crossLink}} property instead.
1511-
* @method _getPaused
1512-
* @protected
1510+
* Deprecated in favor of the {{#crossLink "AbstractTween/paused:property"}}{{/crossLink}} property.
1511+
* @method getPaused
1512+
* @deprecated
15131513
*/
1514-
p._getPaused = function() {
1514+
p.getPaused = function() {
15151515
return this._paused;
15161516
};
15171517

15181518
/**
1519-
*
1520-
* @method _getCurrentLabel
1521-
* @protected
1519+
* Deprecated in favor of the {{#crossLink "AbstractTween/currentLabel:property"}}{{/crossLink}} property.
1520+
* @method getCurrentLabel
1521+
* @deprecated
15221522
* @return {String} The name of the current label or null if there is no label
15231523
**/
1524-
p._getCurrentLabel = function(pos) {
1524+
p.getCurrentLabel = function(pos) {
15251525
var labels = this.getLabels();
15261526
if (pos == null) { pos = this.position; }
15271527
for (var i = 0, l = labels.length; i<l; i++) { if (pos < labels[i].position) { break; } }
@@ -1549,11 +1549,11 @@ this.createjs = this.createjs||{};
15491549
* @type String
15501550
* @readonly
15511551
**/
1552-
1552+
15531553
try {
15541554
Object.defineProperties(p, {
1555-
paused: { set: p._setPaused, get: p._getPaused },
1556-
currentLabel: { get: p._getCurrentLabel }
1555+
paused: { set: p.setPaused, get: p.getPaused },
1556+
currentLabel: { get: p.getCurrentLabel }
15571557
});
15581558
} catch (e) {}
15591559

@@ -3775,6 +3775,6 @@ this.createjs = this.createjs || {};
37753775
* @type String
37763776
* @static
37773777
**/
3778-
s.buildDate = /*=date*/"Thu, 08 Jun 2017 16:26:11 GMT"; // injected by build process
3778+
s.buildDate = /*=date*/"Wed, 21 Jun 2017 16:57:37 GMT"; // injected by build process
37793779

37803780
})();

0 commit comments

Comments
 (0)