Juan Gonzalez P:
Nope. This feature is only available from 6.1.
EDIT: To make this available for 6.0 many changes should be made. Probably better spend that time on upgrading...
Juan, thank you for responding. Unfortunately we have so many custom plugins developed for 6.0 that upgrading them all is not an option at the moment.
As I understand for having the mentioned functionality the AlloyUI and YUI should be upgraded from 3.2.0 to 3.3.0. Has anybody tried doing this?
EDIT: OK, I figured out how to make the viewport feature work in LR 6.0 CE.
I copied
aui-viewport.js and
aui-debounce.js files to my theme, then slightly modified aui-viewport.js to simplify a prefix building process (it's a prefix used for css class name):
I replaced
1NAME = 'view',
2
3CSS_PREFIX = getClassName(NAME) + A.config.classNameDelimiter,
with
1NAME = 'aui-view',
2
3CSS_PREFIX = NAME + A.config.classNameDelimiter,
Then I added a dependency in aui-viewport.js by modifying the last line:
from
1}, '1.0.1' ,{skinnable:false, requires:['aui-base']});
to
1}, '1.0.1' ,{skinnable:false, requires:['aui-debounce']});
aui-base was required for building a prefix. As I simplified a prefix building I don't need aui-base anymore in my aui-viewport module.