office-ui-fabric-react
Version:
Reusable React components for building experiences for Office 365.
30 lines (29 loc) • 1.18 kB
JavaScript
define(["require", "exports"], function (require, exports) {
"use strict";
/**
* The position of pop up window
*/
(function (PopupWindowPosition) {
/**
* PopupWindowPosition would be located in center of screen
*/
PopupWindowPosition[PopupWindowPosition["center"] = 0] = "center";
/**
* PopupWindowPosition would be located in right top of screen
*/
PopupWindowPosition[PopupWindowPosition["rightTop"] = 1] = "rightTop";
/**
* PopupWindowPosition would be located in left top of screen
*/
PopupWindowPosition[PopupWindowPosition["leftTop"] = 2] = "leftTop";
/**
* PopupWindowPosition would be located in right bottom of screen
*/
PopupWindowPosition[PopupWindowPosition["rightBottom"] = 3] = "rightBottom";
/**
* PopupWindowPosition would be located in left bottom of screen
*/
PopupWindowPosition[PopupWindowPosition["leftBottom"] = 4] = "leftBottom";
})(exports.PopupWindowPosition || (exports.PopupWindowPosition = {}));
var PopupWindowPosition = exports.PopupWindowPosition;
});