mirror of
https://bitbucket.org/wisemapping/wisemapping-open-source.git
synced 2024-11-15 11:07:57 +01:00
Bug WISE-435 #resolve
This commit is contained in:
parent
abbeab2f8f
commit
98670c32a6
@ -1036,6 +1036,7 @@ mindplot.Designer = new Class(/** @lends Designer */{
|
|||||||
var topic = model.selectedTopic();
|
var topic = model.selectedTopic();
|
||||||
if (topic) {
|
if (topic) {
|
||||||
topic.showLinkEditor();
|
topic.showLinkEditor();
|
||||||
|
this.onObjectFocusEvent();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
@ -1045,6 +1046,7 @@ mindplot.Designer = new Class(/** @lends Designer */{
|
|||||||
var topic = model.selectedTopic();
|
var topic = model.selectedTopic();
|
||||||
if (topic) {
|
if (topic) {
|
||||||
topic.showNoteEditor();
|
topic.showNoteEditor();
|
||||||
|
this.onObjectFocusEvent();
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -15,9 +15,6 @@ var BootstrapDialog = new Class({
|
|||||||
this.options.onEventData.dialog = this;
|
this.options.onEventData.dialog = this;
|
||||||
this._native = $('<div class="modal fade" tabindex="-1"></div>').append('<div class="modal-dialog"></div>');
|
this._native = $('<div class="modal fade" tabindex="-1"></div>').append('<div class="modal-dialog"></div>');
|
||||||
var content = $('<div class="modal-content"></div>');
|
var content = $('<div class="modal-content"></div>');
|
||||||
content.on('keydown', function(event) {
|
|
||||||
event.stopPropagation();
|
|
||||||
});
|
|
||||||
var header = this._buildHeader(title);
|
var header = this._buildHeader(title);
|
||||||
if (header) {
|
if (header) {
|
||||||
content.append(header);
|
content.append(header);
|
||||||
|
@ -353,6 +353,7 @@ mindplot.widget.Menu = new Class({
|
|||||||
closeButton: true,
|
closeButton: true,
|
||||||
cancelButton: true
|
cancelButton: true
|
||||||
});
|
});
|
||||||
|
designer.onObjectFocusEvent();
|
||||||
});
|
});
|
||||||
this._registerTooltip('shareIt', $msg('COLLABORATE'));
|
this._registerTooltip('shareIt', $msg('COLLABORATE'));
|
||||||
|
|
||||||
@ -365,6 +366,7 @@ mindplot.widget.Menu = new Class({
|
|||||||
closeButton: true,
|
closeButton: true,
|
||||||
cancelButton: true
|
cancelButton: true
|
||||||
});
|
});
|
||||||
|
designer.onObjectFocusEvent();
|
||||||
});
|
});
|
||||||
this._registerTooltip('publishIt', $msg('PUBLISH'));
|
this._registerTooltip('publishIt', $msg('PUBLISH'));
|
||||||
}
|
}
|
||||||
@ -377,6 +379,7 @@ mindplot.widget.Menu = new Class({
|
|||||||
closeButton: true,
|
closeButton: true,
|
||||||
cancelButton: true
|
cancelButton: true
|
||||||
});
|
});
|
||||||
|
designer.onObjectFocusEvent();
|
||||||
});
|
});
|
||||||
this._registerTooltip('history', $msg('HISTORY'));
|
this._registerTooltip('history', $msg('HISTORY'));
|
||||||
}
|
}
|
||||||
@ -392,6 +395,7 @@ mindplot.widget.Menu = new Class({
|
|||||||
closeButton: true,
|
closeButton: true,
|
||||||
cancelButton: true
|
cancelButton: true
|
||||||
});
|
});
|
||||||
|
designer.onObjectFocusEvent();
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
|
|
||||||
<p><strong><spring:message code="ADD_PEOPLE"/>:</strong></p>
|
<p><strong><spring:message code="ADD_PEOPLE"/>:</strong></p>
|
||||||
|
|
||||||
<input type="text" id="collabEmails" name="collabEmails" class="form-control" autofocus='autofocus'
|
<input type="text" id="collabEmails" name="collabEmails" class="form-control"
|
||||||
placeholder="<spring:message code="COLLABORATORS_SEPARATED_BY_COMA"/>"/>
|
placeholder="<spring:message code="COLLABORATORS_SEPARATED_BY_COMA"/>"/>
|
||||||
|
|
||||||
<div class="btn-group" id="roleBtn">
|
<div class="btn-group" id="roleBtn">
|
||||||
|
Loading…
Reference in New Issue
Block a user