first commit
This commit is contained in:
28
mixitup-3.3.1/src/user-instruction.js
Normal file
28
mixitup-3.3.1/src/user-instruction.js
Normal file
@@ -0,0 +1,28 @@
|
||||
/* global mixitup, h */
|
||||
|
||||
/**
|
||||
* @constructor
|
||||
* @memberof mixitup
|
||||
* @private
|
||||
* @since 3.0.0
|
||||
*/
|
||||
|
||||
mixitup.UserInstruction = function() {
|
||||
mixitup.Base.call(this);
|
||||
|
||||
this.callActions('beforeConstruct');
|
||||
|
||||
this.command = {};
|
||||
this.animate = false;
|
||||
this.callback = null;
|
||||
|
||||
this.callActions('afterConstruct');
|
||||
|
||||
h.seal(this);
|
||||
};
|
||||
|
||||
mixitup.BaseStatic.call(mixitup.UserInstruction);
|
||||
|
||||
mixitup.UserInstruction.prototype = Object.create(mixitup.Base.prototype);
|
||||
|
||||
mixitup.UserInstruction.prototype.constructor = mixitup.UserInstruction;
|
||||
Reference in New Issue
Block a user