mirador
Version:
An open-source, web-based 'multi-up' viewer that supports zoom-pan-rotate functionality, ability to display/compare simple images, and images with annotations.
19 lines (15 loc) • 503 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.updateElasticWindowLayout = updateElasticWindowLayout;
var _actionTypes = _interopRequireDefault(require("./action-types"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
/** */
function updateElasticWindowLayout(windowId, payload) {
return {
payload: payload,
type: _actionTypes["default"].UPDATE_ELASTIC_WINDOW_LAYOUT,
windowId: windowId
};
}