app-decorators
Version:
Collection of useful ES7 Decorators, writtin in ES6, that can be used for building webapps
44 lines (35 loc) • 859 B
JavaScript
System.register(['app-decorators/src/libs/element-to-function'], function (_export, _context) {
"use strict";
var _elementToFunc, w, windowEvents;
return {
setters: [function (_appDecoratorsSrcLibsElementToFunction) {
_elementToFunc = _appDecoratorsSrcLibsElementToFunction.default;
}],
execute: function () {
w = System.global.window;
_export('windowEvents', windowEvents = {
'afterprint': w,
'beforeprint': w,
'beforeunload': w,
'hashchange': w,
'load': w,
'message': w,
'pagehide': w,
'pageshow': w,
'popstate': w,
'resize': w,
'storage': w,
'unload': w,
'mousewheel': w,
'online': w,
'offline': w,
'wheel': w,
'keydown': w,
'keypress': w,
'keyup': w
});
_export('windowEvents', windowEvents);
}
};
});
//# sourceMappingURL=window-events.js.map