Commit c8965a38 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

Поправил сборку файла с закрепленными областями

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@60380 954022d7-b5bf-4e40-9824-e11837661b57
parent f7cc5414
......@@ -264,6 +264,9 @@
* @param [event] {MouseEvent}
*/
asc_CEventsController.prototype.scrollVertical = function (delta, event) {
if (window["NATIVE_EDITOR_ENJINE"])
return;
if (event && event.preventDefault)
event.preventDefault();
this.vsbApi.scrollByY(this.settings.vscrollStep * delta);
......@@ -275,6 +278,9 @@
* @param [event] {MouseEvent}
*/
asc_CEventsController.prototype.scrollHorizontal = function (delta, event) {
if (window["NATIVE_EDITOR_ENJINE"])
return;
if (event && event.preventDefault)
event.preventDefault();
this.hsbApi.scrollByX(this.settings.hscrollStep * delta);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment