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
1949dc7e
Commit
1949dc7e
authored
Aug 09, 2017
by
Julia Radzhabova
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[SSE] Fix Bug 35558.
parent
9f4a5ce2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
1 deletion
+5
-1
apps/spreadsheeteditor/main/app/controller/Statusbar.js
apps/spreadsheeteditor/main/app/controller/Statusbar.js
+5
-1
No files found.
apps/spreadsheeteditor/main/app/controller/Statusbar.js
View file @
1949dc7e
...
@@ -105,6 +105,7 @@ define([
...
@@ -105,6 +105,7 @@ define([
/** coauthoring end **/
/** coauthoring end **/
this
.
api
.
asc_registerCallback
(
'
asc_onError
'
,
_
.
bind
(
this
.
onError
,
this
));
this
.
api
.
asc_registerCallback
(
'
asc_onError
'
,
_
.
bind
(
this
.
onError
,
this
));
this
.
api
.
asc_registerCallback
(
'
asc_onFilterInfo
'
,
_
.
bind
(
this
.
onApiFilterInfo
,
this
));
this
.
api
.
asc_registerCallback
(
'
asc_onFilterInfo
'
,
_
.
bind
(
this
.
onApiFilterInfo
,
this
));
this
.
api
.
asc_registerCallback
(
'
asc_onActiveSheetChanged
'
,
_
.
bind
(
this
.
onApiActiveSheetChanged
,
this
));
this
.
statusbar
.
setApi
(
api
);
this
.
statusbar
.
setApi
(
api
);
},
},
...
@@ -620,12 +621,15 @@ define([
...
@@ -620,12 +621,15 @@ define([
}
}
},
},
onError
:
function
(
id
,
level
,
errData
)
{
onError
:
function
(
id
,
level
,
errData
)
{
if
(
id
==
Asc
.
c_oAscError
.
ID
.
LockedWorksheetRename
)
if
(
id
==
Asc
.
c_oAscError
.
ID
.
LockedWorksheetRename
)
this
.
statusbar
.
update
();
this
.
statusbar
.
update
();
},
},
onApiActiveSheetChanged
:
function
(
index
)
{
this
.
statusbar
.
tabMenu
.
hide
();
},
zoomText
:
'
Zoom {0}%
'
,
zoomText
:
'
Zoom {0}%
'
,
errorLastSheet
:
'
Workbook must have at least one visible worksheet.
'
,
errorLastSheet
:
'
Workbook must have at least one visible worksheet.
'
,
errorRemoveSheet
:
'
Can
\'
t delete the worksheet.
'
,
errorRemoveSheet
:
'
Can
\'
t delete the worksheet.
'
,
...
...
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