Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
W
web-apps
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boris Kocherov
web-apps
Commits
d6c7684b
Commit
d6c7684b
authored
Aug 29, 2016
by
Julia Radzhabova
Committed by
GitHub
Aug 29, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #18 from ONLYOFFICE/release/v4.1.0
Release/v4.1.0
parents
a1ebc442
878f1880
Changes
8
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
14 deletions
+14
-14
apps/documenteditor/main/app/view/ChartSettings.js
apps/documenteditor/main/app/view/ChartSettings.js
+1
-1
apps/documenteditor/main/app/view/ImageSettings.js
apps/documenteditor/main/app/view/ImageSettings.js
+3
-3
apps/documenteditor/main/app/view/Toolbar.js
apps/documenteditor/main/app/view/Toolbar.js
+1
-1
apps/presentationeditor/main/app/view/ChartSettings.js
apps/presentationeditor/main/app/view/ChartSettings.js
+1
-1
apps/presentationeditor/main/app/view/ImageSettings.js
apps/presentationeditor/main/app/view/ImageSettings.js
+3
-3
apps/presentationeditor/main/app/view/Toolbar.js
apps/presentationeditor/main/app/view/Toolbar.js
+1
-1
apps/spreadsheeteditor/main/app/view/ChartSettings.js
apps/spreadsheeteditor/main/app/view/ChartSettings.js
+1
-1
apps/spreadsheeteditor/main/app/view/ImageSettings.js
apps/spreadsheeteditor/main/app/view/ImageSettings.js
+3
-3
No files found.
apps/documenteditor/main/app/view/ChartSettings.js
View file @
d6c7684b
...
...
@@ -577,7 +577,7 @@ define([
textBar
:
'
Bar Chart
'
,
textArea
:
'
Area Chart
'
,
textPie
:
'
Pie Chart
'
,
textPoint
:
'
Point
Chart
'
,
textPoint
:
'
XY (Scatter)
Chart
'
,
textStock
:
'
Stock Chart
'
,
textStyle
:
'
Style
'
...
...
apps/documenteditor/main/app/view/ImageSettings.js
View file @
d6c7684b
...
...
@@ -242,10 +242,10 @@ define([
if
(
this
.
_state
.
isOleObject
)
{
var
plugin
=
DE
.
getCollection
(
'
Common.Collections.Plugins
'
).
findWhere
({
guid
:
pluginGuid
});
this
.
btnEditObject
.
setDisabled
(
plugin
===
null
||
plugin
===
undefined
);
this
.
btnEditObject
.
setDisabled
(
plugin
===
null
||
plugin
===
undefined
||
this
.
_locked
);
}
else
{
this
.
btnInsertFromUrl
.
setDisabled
(
pluginGuid
===
null
);
this
.
btnInsertFromFile
.
setDisabled
(
pluginGuid
===
null
);
this
.
btnInsertFromUrl
.
setDisabled
(
pluginGuid
===
null
||
this
.
_locked
);
this
.
btnInsertFromFile
.
setDisabled
(
pluginGuid
===
null
||
this
.
_locked
);
}
}
},
...
...
apps/documenteditor/main/app/view/Toolbar.js
View file @
d6c7684b
...
...
@@ -1815,7 +1815,7 @@ define([
textBar
:
'
Bar Chart
'
,
textArea
:
'
Area Chart
'
,
textPie
:
'
Pie Chart
'
,
textPoint
:
'
Point
Chart
'
,
textPoint
:
'
XY (Scatter)
Chart
'
,
textStock
:
'
Stock Chart
'
,
tipColorSchemas
:
'
Change Color Scheme
'
,
tipInsertText
:
'
Insert Text
'
,
...
...
apps/presentationeditor/main/app/view/ChartSettings.js
View file @
d6c7684b
...
...
@@ -512,7 +512,7 @@ define([
textBar
:
'
Bar Chart
'
,
textArea
:
'
Area Chart
'
,
textPie
:
'
Pie Chart
'
,
textPoint
:
'
Point
Chart
'
,
textPoint
:
'
XY (Scatter)
Chart
'
,
textStock
:
'
Stock Chart
'
,
textStyle
:
'
Style
'
},
PE
.
Views
.
ChartSettings
||
{}));
...
...
apps/presentationeditor/main/app/view/ImageSettings.js
View file @
d6c7684b
...
...
@@ -181,10 +181,10 @@ define([
if
(
this
.
_state
.
isOleObject
)
{
var
plugin
=
PE
.
getCollection
(
'
Common.Collections.Plugins
'
).
findWhere
({
guid
:
pluginGuid
});
this
.
btnEditObject
.
setDisabled
(
plugin
===
null
||
plugin
===
undefined
);
this
.
btnEditObject
.
setDisabled
(
plugin
===
null
||
plugin
===
undefined
||
this
.
_locked
);
}
else
{
this
.
btnInsertFromUrl
.
setDisabled
(
pluginGuid
===
null
);
this
.
btnInsertFromFile
.
setDisabled
(
pluginGuid
===
null
);
this
.
btnInsertFromUrl
.
setDisabled
(
pluginGuid
===
null
||
this
.
_locked
);
this
.
btnInsertFromFile
.
setDisabled
(
pluginGuid
===
null
||
this
.
_locked
);
}
}
},
...
...
apps/presentationeditor/main/app/view/Toolbar.js
View file @
d6c7684b
...
...
@@ -1595,7 +1595,7 @@ define([
textBar
:
'
Bar Chart
'
,
textArea
:
'
Area Chart
'
,
textPie
:
'
Pie Chart
'
,
textPoint
:
'
Point
Chart
'
,
textPoint
:
'
XY (Scatter)
Chart
'
,
textStock
:
'
Stock Chart
'
,
tipSynchronize
:
'
The document has been changed by another user. Please click to save your changes and reload the updates.
'
,
txtScheme1
:
'
Office
'
,
...
...
apps/spreadsheeteditor/main/app/view/ChartSettings.js
View file @
d6c7684b
...
...
@@ -528,7 +528,7 @@ define([
textBar
:
'
Bar Chart
'
,
textArea
:
'
Area Chart
'
,
textPie
:
'
Pie Chart
'
,
textPoint
:
'
Point
Chart
'
,
textPoint
:
'
XY (Scatter)
Chart
'
,
textStock
:
'
Stock Chart
'
,
textStyle
:
'
Style
'
,
textAdvanced
:
'
Show advanced settings
'
...
...
apps/spreadsheeteditor/main/app/view/ImageSettings.js
View file @
d6c7684b
...
...
@@ -236,10 +236,10 @@ define([
if
(
this
.
_state
.
isOleObject
)
{
var
plugin
=
SSE
.
getCollection
(
'
Common.Collections.Plugins
'
).
findWhere
({
guid
:
pluginGuid
});
this
.
btnEditObject
.
setDisabled
(
plugin
===
null
||
plugin
===
undefined
);
this
.
btnEditObject
.
setDisabled
(
plugin
===
null
||
plugin
===
undefined
||
this
.
_locked
);
}
else
{
this
.
btnInsertFromUrl
.
setDisabled
(
pluginGuid
===
null
);
this
.
btnInsertFromFile
.
setDisabled
(
pluginGuid
===
null
);
this
.
btnInsertFromUrl
.
setDisabled
(
pluginGuid
===
null
||
this
.
_locked
);
this
.
btnInsertFromFile
.
setDisabled
(
pluginGuid
===
null
||
this
.
_locked
);
}
}
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment