first commit
This commit is contained in:
30
mixitup-3.3.1/src/queue-item.js
Normal file
30
mixitup-3.3.1/src/queue-item.js
Normal file
@@ -0,0 +1,30 @@
|
||||
/* global mixitup, h */
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @memberof mixitup
|
||||
* @private
|
||||
* @since 3.0.0
|
||||
*/
|
||||
|
||||
mixitup.QueueItem = function() {
|
||||
mixitup.Base.call(this);
|
||||
|
||||
this.callActions('beforeConstruct');
|
||||
|
||||
this.args = [];
|
||||
this.instruction = null;
|
||||
this.triggerElement = null;
|
||||
this.deferred = null;
|
||||
this.isToggling = false;
|
||||
|
||||
this.callActions('afterConstruct');
|
||||
|
||||
h.seal(this);
|
||||
};
|
||||
|
||||
mixitup.BaseStatic.call(mixitup.QueueItem);
|
||||
|
||||
mixitup.QueueItem.prototype = Object.create(mixitup.Base.prototype);
|
||||
|
||||
mixitup.QueueItem.prototype.constructor = mixitup.QueueItem;
|
||||
Reference in New Issue
Block a user