1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
Ext.namespace('Zarafa.plugins.files.data');
/**
* @class Zarafa.plugins.files.data.ViewModes
* @extends Zarafa.core.Enum
*
* Enum containing the different viewing modes of the files context.
*
* @singleton
*/
Zarafa.plugins.files.data.ViewModes = Zarafa.core.Enum.create({
/**
* Don't show the preview panel
* @property
* @type Number
*/
NO_PREVIEW: 0,
/**
* Show the preview panel to the right
* @property
* @type Number
*/
RIGHT_PREVIEW: 1,
/**
* Show the preview panel in the bottom
* @property
* @type Number
*/
BOTTOM_PREVIEW: 2
});
|