commit
c4d2ddd032
|
@ -149,6 +149,9 @@ Common.UI.HintManager = new(function() {
|
|||
|
||||
var _showHints = function () {
|
||||
_inputLetters = '';
|
||||
if (_currentLevel === 0) {
|
||||
Common.NotificationCenter.trigger('toolbar:collapse');
|
||||
}
|
||||
if (_currentHints.length === 0 || ($('#file-menu-panel').is(':visible' || _isEditDiagram) && _currentLevel === 1)) {
|
||||
_getHints();
|
||||
}
|
||||
|
|
|
@ -210,6 +210,7 @@
|
|||
currentPageX;
|
||||
|
||||
$scrollbarX.bind('mousedown' + eventClassName, function (e) {
|
||||
Common.NotificationCenter.trigger('hints:clear');
|
||||
currentPageX = e.pageX;
|
||||
currentLeft = $scrollbarX.position().left;
|
||||
$scrollbarXRail.addClass('in-scrolling');
|
||||
|
@ -240,6 +241,7 @@
|
|||
currentPageY;
|
||||
|
||||
$scrollbarY.bind('mousedown' + eventClassName, function (e) {
|
||||
Common.NotificationCenter.trigger('hints:clear');
|
||||
currentPageY = e.pageY;
|
||||
currentTop = $scrollbarY.position().top;
|
||||
$scrollbarYRail.addClass('in-scrolling');
|
||||
|
|
|
@ -231,6 +231,9 @@ define([
|
|||
// Common.NotificationCenter.on('menu:afterkeydown', _.bind(this.onAfterKeydownMenu, this));
|
||||
Common.NotificationCenter.on('style:commitsave', _.bind(this.onSaveStyle, this));
|
||||
Common.NotificationCenter.on('style:commitchange', _.bind(this.onUpdateStyle, this));
|
||||
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
|
||||
this.toolbar.collapse();
|
||||
}, this));
|
||||
},
|
||||
|
||||
onLaunch: function() {
|
||||
|
|
|
@ -177,6 +177,9 @@ define([
|
|||
}
|
||||
}
|
||||
});
|
||||
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
|
||||
this.toolbar.collapse();
|
||||
}, this));
|
||||
|
||||
var me = this;
|
||||
|
||||
|
|
|
@ -149,6 +149,9 @@ define([
|
|||
});
|
||||
Common.NotificationCenter.on('page:settings', _.bind(this.onApiSheetChanged, this));
|
||||
Common.NotificationCenter.on('formula:settings', _.bind(this.applyFormulaSettings, this));
|
||||
Common.NotificationCenter.on('toolbar:collapse', _.bind(function () {
|
||||
this.toolbar.collapse();
|
||||
}, this));
|
||||
|
||||
this.editMode = true;
|
||||
this._isAddingShape = false;
|
||||
|
|
Loading…
Reference in a new issue