Fix Bug 35547.

This commit is contained in:
Julia Radzhabova 2017-11-10 12:00:47 +03:00
parent aeb279276d
commit 6036d08f92
3 changed files with 3 additions and 3 deletions

View file

@ -86,7 +86,7 @@ define([
me.statusbar.render(cfg);
me.statusbar.$el.css('z-index', 1);
$('.statusbar #label-zoom').css('min-width', 70);
$('.statusbar #label-zoom').css('min-width', 80);
if ( cfg.isEdit ) {
var review = DE.getController('Common.Controllers.ReviewChanges').getView();

View file

@ -84,7 +84,7 @@ define([
this.bindViewEvents(this.statusbar, this.events);
$('#status-label-zoom').css('min-width', 70);
$('#status-label-zoom').css('min-width', 80);
this.statusbar.btnZoomToPage.on('click', _.bind(this.onBtnZoomTo, this, 'topage'));
this.statusbar.btnZoomToWidth.on('click', _.bind(this.onBtnZoomTo, this, 'towidth'));

View file

@ -81,7 +81,7 @@ define([
onLaunch: function() {
this.statusbar = this.createView('Statusbar').render();
this.statusbar.$el.css('z-index', 10);
this.statusbar.labelZoom.css('min-width', 70);
this.statusbar.labelZoom.css('min-width', 80);
this.statusbar.zoomMenu.on('item:click', _.bind(this.menuZoomClick, this));
this.bindViewEvents(this.statusbar, this.events);