Sha256: fc26adb67a70f3caa9cc598619530df98e0d4baedb148ce4923cb7ab48101007

Contents?: true

Size: 985 Bytes

Versions: 1

Compression:

Stored size: 985 Bytes

Contents

    var globalObjectName = "Sideshow",
        $window,
        $body,
        $document,
        pollingDuration = 150,
        longAnimationDuration = 600,

        /** 
        The main class for Sideshow

        @class SS 
        @static
        **/
        SS = {
            /**
            The current Sideshow version

            @property VERSION
            @type String
            **/
            get VERSION() {
                return "0.4.1";
            }
        },

        controlVariables = [],
        flags = {
            lockMaskUpdate: false,
            changingStep: false,
            skippingStep: false,
            running: false
        },
        wizards = [],
        currentWizard,

        /**
        Possible statuses for an animation

        @@enum AnimationStatus
        **/
        AnimationStatus = jazz.Enum("VISIBLE", "FADING_IN", "FADING_OUT", "NOT_DISPLAYED", "NOT_RENDERED", "TRANSPARENT");

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sideshow-0.4.1 src/general/variables.js