document aspect ratio enum
This commit is contained in:
parent
4f478a4667
commit
47475ac597
@ -1,10 +1,11 @@
|
|||||||
var AspectRatio = Object.freeze({
|
var AspectRatio = Object.freeze({
|
||||||
Initial: -1,
|
Initial: -1, // page default
|
||||||
Reset: 0,
|
Reset: 0, // reset to initial
|
||||||
Automatic: 1,
|
Automatic: 1, // set by Aard
|
||||||
FitWidth: 2,
|
FitWidth: 2, // legacy/dynamic: fit to width
|
||||||
FitHeight: 3,
|
FitHeight: 3, // legacy/dynamic: fit to height
|
||||||
Fixed: 4,
|
Fixed: 4, // pre-determined aspect ratio
|
||||||
|
Manual: 5, // ratio achieved by zooming in/zooming out
|
||||||
});
|
});
|
||||||
|
|
||||||
export default AspectRatio;
|
export default AspectRatio;
|
||||||
|
Loading…
Reference in New Issue
Block a user