Merge pull request #1887 from gwa2100/Issue#1789fix
Fixed Issue #1789: Help popup in web client not clearing after close
This commit is contained in:
commit
63c45683fb
1 changed files with 1 additions and 1 deletions
|
|
@ -137,7 +137,7 @@ let options_plugin = (function () {
|
||||||
// is helppopup set? and if so, does this Text have type 'help'?
|
// is helppopup set? and if so, does this Text have type 'help'?
|
||||||
if ('helppopup' in options && options['helppopup'] ) {
|
if ('helppopup' in options && options['helppopup'] ) {
|
||||||
if (kwargs && ('type' in kwargs) && (kwargs['type'] == 'help') ) {
|
if (kwargs && ('type' in kwargs) && (kwargs['type'] == 'help') ) {
|
||||||
$('#helpdialogcontent').append('<div>'+ args + '</div>');
|
$('#helpdialogcontent').prepend('<div>'+ args + '</div>');
|
||||||
plugins['popups'].togglePopup("#helpdialog");
|
plugins['popups'].togglePopup("#helpdialog");
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue