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
3875b0aa
Commit
3875b0aa
authored
May 17, 2016
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Отладка контекстного меню.
parent
041d617b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
+2
-1
No files found.
apps/spreadsheeteditor/main/app/controller/DocumentHolder.js
View file @
3875b0aa
...
...
@@ -153,7 +153,7 @@ define([
view
.
pmiDeleteCells
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onDeleteCells
,
me
));
view
.
pmiSortCells
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onSortCells
,
me
));
view
.
pmiFilterCells
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onFilterCells
,
me
));
view
.
pmiReapply
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onReapply
,
me
));
view
.
pmiReapply
.
on
(
'
click
'
,
_
.
bind
(
me
.
onReapply
,
me
));
view
.
pmiClear
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onClear
,
me
));
view
.
pmiSelectTable
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onSelectTable
,
me
));
view
.
pmiInsertTable
.
menu
.
on
(
'
item:click
'
,
_
.
bind
(
me
.
onInsertTable
,
me
));
...
...
@@ -1291,6 +1291,7 @@ define([
});
documentHolder
.
pmiCopy
.
setDisabled
(
false
);
documentHolder
.
pmiSortCells
.
setDisabled
(
isCellLocked
||
(
filterInfo
==
null
));
documentHolder
.
pmiReapply
.
setDisabled
(
isCellLocked
||
(
isApplyAutoFilter
!==
true
));
if
(
showMenu
)
this
.
showPopupMenu
(
documentHolder
.
ssMenu
,
{},
event
);
}
else
if
(
this
.
permissions
.
isEditDiagram
&&
seltype
==
Asc
.
c_oAscSelectionType
.
RangeChartText
)
{
if
(
!
showMenu
&&
!
documentHolder
.
textInShapeMenu
.
isVisible
())
return
;
...
...
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