From 767cc98e09c318fe1d492ac13009671dea8264b3 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Oct 2017 13:47:04 +0300 Subject: [PATCH 1/2] Bug with resize cursor in the plugins window. --- apps/common/main/lib/component/Window.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/common/main/lib/component/Window.js b/apps/common/main/lib/component/Window.js index f2f4e3a33a..700ddfe32b 100644 --- a/apps/common/main/lib/component/Window.js +++ b/apps/common/main/lib/component/Window.js @@ -842,13 +842,13 @@ define([ setResizable: function(resizable, minSize, maxSize) { if (resizable !== this.resizable) { if (resizable) { - var bordersTemplate = '
' + + var bordersTemplate = '
' + '
' + '
' + '
' + - '
' + + '
' + '
' + - '
' + + '
' + '
'; if (this.initConfig.header) bordersTemplate += '
' + From 3355cfa50e23d1c37b2c29a713917e4dbdc395e2 Mon Sep 17 00:00:00 2001 From: Julia Radzhabova Date: Thu, 19 Oct 2017 13:58:16 +0300 Subject: [PATCH 2/2] Bug with resize cursor in the plugins window. --- apps/common/main/lib/component/Window.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/common/main/lib/component/Window.js b/apps/common/main/lib/component/Window.js index 700ddfe32b..9a6cbef9e6 100644 --- a/apps/common/main/lib/component/Window.js +++ b/apps/common/main/lib/component/Window.js @@ -851,8 +851,8 @@ define([ '
' + '
'; if (this.initConfig.header) - bordersTemplate += '
' + - '
'; + bordersTemplate += '
' + + '
'; this.$window.append(_.template(bordersTemplate));