diff --git a/apps/common/main/lib/component/SynchronizeTip.js b/apps/common/main/lib/component/SynchronizeTip.js
index a29c32ac3..6c7c170e8 100644
--- a/apps/common/main/lib/component/SynchronizeTip.js
+++ b/apps/common/main/lib/component/SynchronizeTip.js
@@ -45,7 +45,8 @@ define([
text : '',
placement: 'right-bottom',
showLink: true,
- showButton: false
+ showButton: false,
+ closable: true
},
template: _.template([
@@ -54,7 +55,9 @@ define([
'
',
'',
'
<%= scope.text %>
',
+ '<% if ( scope.closable ) { %>',
'
',
+ '<% } %>',
'
',
'<% if ( scope.showLink ) { %>',
'',
diff --git a/apps/documenteditor/forms/app/controller/ApplicationController.js b/apps/documenteditor/forms/app/controller/ApplicationController.js
index 7985f3dbc..4d739d38e 100644
--- a/apps/documenteditor/forms/app/controller/ApplicationController.js
+++ b/apps/documenteditor/forms/app/controller/ApplicationController.js
@@ -1250,6 +1250,7 @@ define([
target: this.view.btnSubmit.$el,
text: this.textRequired,
showLink: false,
+ closable: false,
showButton: true,
textButton: this.textGotIt
});
diff --git a/apps/documenteditor/main/app/controller/FormsTab.js b/apps/documenteditor/main/app/controller/FormsTab.js
index 9865320bb..a9572464b 100644
--- a/apps/documenteditor/main/app/controller/FormsTab.js
+++ b/apps/documenteditor/main/app/controller/FormsTab.js
@@ -373,6 +373,7 @@ define([
target: target,
text: this.view.textCreateForm,
showLink: true
+ closable: false,
});
tip.on({
'dontshowclick': function() {