StructureJS

0.10.3

A class based utility library for building modular and scalable web platform applications. Features opt-in classes and utilities which provide a solid foundation and toolset to build your next project.

File: js/event/native/WindowEvents.js

(function (factory) {
    if (typeof module === 'object' && typeof module.exports === 'object') {
        var v = factory(require, exports); if (v !== undefined) module.exports = v;
    }
    else if (typeof define === 'function' && define.amd) {
        define(["require", "exports"], factory);
    }
})(function (require, exports) {
    var WindowEvents = (function () {
        function WindowEvents() {
        }
        /**
         * TODO: YUIDoc_comment
         *
         * @property CHANGE
         * @type {string}
         * @static
         */
        WindowEvents.CHANGE = "change";
        return WindowEvents;
    })();
    Object.defineProperty(exports, "__esModule", { value: true });
    exports.default = WindowEvents;
});