| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /**
- * An enum represents the different content types of a step and their loading mechanisms.
- *
- * @class contentMode
- * @for steps
- **/
- var contentMode = $.fn.steps.contentMode = {
- /**
- * HTML embedded content
- *
- * @readOnly
- * @property html
- * @type Integer
- * @for contentMode
- **/
- html: 0,
- /**
- * IFrame embedded content
- *
- * @readOnly
- * @property iframe
- * @type Integer
- * @for contentMode
- **/
- iframe: 1,
- /**
- * Async embedded content
- *
- * @readOnly
- * @property async
- * @type Integer
- * @for contentMode
- **/
- async: 2
- };
- /**
- * An enum represents the orientation of the steps navigation.
- *
- * @class stepsOrientation
- * @for steps
- **/
- var stepsOrientation = $.fn.steps.stepsOrientation = {
- /**
- * Horizontal orientation
- *
- * @readOnly
- * @property horizontal
- * @type Integer
- * @for stepsOrientation
- **/
- horizontal: 0,
- /**
- * Vertical orientation
- *
- * @readOnly
- * @property vertical
- * @type Integer
- * @for stepsOrientation
- **/
- vertical: 1
- };
- /**
- * An enum that represents the various transition animations.
- *
- * @class transitionEffect
- * @for steps
- **/
- var transitionEffect = $.fn.steps.transitionEffect = {
- /**
- * No transition animation
- *
- * @readOnly
- * @property none
- * @type Integer
- * @for transitionEffect
- **/
- none: 0,
- /**
- * Fade in transition
- *
- * @readOnly
- * @property fade
- * @type Integer
- * @for transitionEffect
- **/
- fade: 1,
- /**
- * Slide up transition
- *
- * @readOnly
- * @property slide
- * @type Integer
- * @for transitionEffect
- **/
- slide: 2,
- /**
- * Slide left transition
- *
- * @readOnly
- * @property slideLeft
- * @type Integer
- * @for transitionEffect
- **/
- slideLeft: 3
- };
|