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
5e45c1f9
Commit
5e45c1f9
authored
Nov 15, 2016
by
Maxim Kadushkin
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into feature/newembed
parents
b6974113
26819a54
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
19 additions
and
11 deletions
+19
-11
apps/common/main/lib/controller/Comments.js
apps/common/main/lib/controller/Comments.js
+6
-4
apps/presentationeditor/main/app/controller/Main.js
apps/presentationeditor/main/app/controller/Main.js
+1
-4
apps/presentationeditor/main/app/controller/RightMenu.js
apps/presentationeditor/main/app/controller/RightMenu.js
+1
-1
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
+10
-1
apps/spreadsheeteditor/main/app/controller/Main.js
apps/spreadsheeteditor/main/app/controller/Main.js
+0
-1
apps/spreadsheeteditor/main/locale/en.json
apps/spreadsheeteditor/main/locale/en.json
+1
-0
No files found.
apps/common/main/lib/controller/Comments.js
View file @
5e45c1f9
...
...
@@ -1222,12 +1222,14 @@ define([
for
(
i
=
0
;
i
<
comments
.
length
;
++
i
)
{
comment
=
this
.
findComment
(
comments
[
i
].
asc_getId
());
comment
.
set
(
'
editTextInPopover
'
,
true
);
comment
.
set
(
'
hint
'
,
false
);
this
.
popoverComments
.
push
(
comment
);
if
(
comment
)
{
comment
.
set
(
'
editTextInPopover
'
,
true
);
comment
.
set
(
'
hint
'
,
false
);
this
.
popoverComments
.
push
(
comment
);
}
}
if
(
this
.
getPopover
())
{
if
(
this
.
getPopover
()
&&
this
.
popoverComments
.
length
>
0
)
{
if
(
this
.
getPopover
().
isVisible
())
{
this
.
getPopover
().
hide
();
}
...
...
apps/presentationeditor/main/app/controller/Main.js
View file @
5e45c1f9
...
...
@@ -1335,11 +1335,8 @@ define([
},
onFocusObject
:
function
(
SelectedObjects
)
{
if
(
SelectedObjects
.
length
>
0
)
{
var
rightpan
=
this
.
getApplication
().
getController
(
'
RightMenu
'
);
// var docPreview = this.getApplication().getController('Viewport').getView('DocumentPreview');
if
(
rightpan
/*&& !docPreview.isVisible()*/
)
rightpan
.
onFocusObject
.
call
(
rightpan
,
SelectedObjects
);
}
if
(
rightpan
)
rightpan
.
onFocusObject
.
call
(
rightpan
,
SelectedObjects
);
},
_onChangeObjectLock
:
function
()
{
...
...
apps/presentationeditor/main/app/controller/RightMenu.js
View file @
5e45c1f9
...
...
@@ -114,7 +114,7 @@ define([
this
.
_settings
[
i
].
locked
=
undefined
;
}
}
this
.
_settings
[
Common
.
Utils
.
documentSettingsType
.
Slide
].
hidden
=
0
;
this
.
_settings
[
Common
.
Utils
.
documentSettingsType
.
Slide
].
hidden
=
(
SelectedObjects
.
length
>
0
)
?
0
:
1
;
for
(
i
=
0
;
i
<
SelectedObjects
.
length
;
i
++
)
{
...
...
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
View file @
5e45c1f9
...
...
@@ -1454,6 +1454,14 @@ define([
},
10
);
}
else
{
this
.
documentHolder
.
entriesMenu
.
hide
();
Common
.
UI
.
warning
({
title
:
this
.
notcriticalErrorTitle
,
maxwidth
:
600
,
msg
:
this
.
txtNoChoices
,
callback
:
_
.
bind
(
function
(
btn
){
Common
.
NotificationCenter
.
trigger
(
'
edit:complete
'
,
this
.
documentHolder
);
},
this
)
});
}
},
...
...
@@ -2282,7 +2290,8 @@ define([
insertColumnRightText
:
'
Column Right
'
,
deleteText
:
'
Delete
'
,
deleteRowText
:
'
Delete Row
'
,
deleteColumnText
:
'
Delete Column
'
deleteColumnText
:
'
Delete Column
'
,
txtNoChoices
:
'
There are no choices for filling the cell.<br>Only text values from the column can be selected for replacement.
'
},
SSE
.
Controllers
.
DocumentHolder
||
{}));
});
\ No newline at end of file
apps/spreadsheeteditor/main/app/controller/Main.js
View file @
5e45c1f9
...
...
@@ -1419,7 +1419,6 @@ define([
var
me
=
this
;
if
(
id
==
Asc
.
c_oAscConfirm
.
ConfirmReplaceRange
)
{
Common
.
UI
.
warning
({
closable
:
false
,
title
:
this
.
notcriticalErrorTitle
,
msg
:
this
.
confirmMoveCellRange
,
buttons
:
[
'
yes
'
,
'
no
'
],
...
...
apps/spreadsheeteditor/main/locale/en.json
View file @
5e45c1f9
...
...
@@ -172,6 +172,7 @@
"SSE.Controllers.DocumentHolder.txtLimitUnder"
:
"Limit under text"
,
"SSE.Controllers.DocumentHolder.txtMatchBrackets"
:
"Match brackets to argument height"
,
"SSE.Controllers.DocumentHolder.txtMatrixAlign"
:
"Matrix alignment"
,
"SSE.Controllers.DocumentHolder.txtNoChoices"
:
"There are no choices for filling the cell.<br>Only text values from the column can be selected for replacement."
,
"SSE.Controllers.DocumentHolder.txtOverbar"
:
"Bar over text"
,
"SSE.Controllers.DocumentHolder.txtRemFractionBar"
:
"Remove fraction bar"
,
"SSE.Controllers.DocumentHolder.txtRemLimit"
:
"Remove limit"
,
...
...
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