Feature #9819 » 9819v3.patch
Resources/Public/JavaScript/preview.js (working copy) | ||
---|---|---|
activeTab: 0,
|
||
items: [{
|
||
title: TYPO3.LLL.Workspaces.visualPreview,
|
||
id: 'wsVisual',
|
||
layout: 'fit',
|
||
items: [{
|
||
layout: 'fit',
|
||
... | ... | |
tbar: [
|
||
'->', '-',
|
||
{
|
||
xtype: 'tbtext',
|
||
text: TYPO3.LLL.Workspaces.livePreview
|
||
xtype: 'button',
|
||
text: TYPO3.LLL.Workspaces.livePreview,
|
||
listeners: {
|
||
click: {
|
||
fn: function () {
|
||
Ext.getCmp('sizeSlider').setValue(0);
|
||
}
|
||
}
|
||
}
|
||
},
|
||
{
|
||
xtype: 'slider',
|
||
... | ... | |
}
|
||
},
|
||
{
|
||
xtype: 'tbtext',
|
||
text: TYPO3.LLL.Workspaces.workspacePreview
|
||
xtype: 'button',
|
||
text: TYPO3.LLL.Workspaces.workspacePreview,
|
||
listeners: {
|
||
click: {
|
||
fn: function () {
|
||
Ext.getCmp('sizeSlider').setValue(100);
|
||
}
|
||
}
|
||
}
|
||
}
|
||
]
|
||
}]
|