mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 23:45:44 +01:00
added option to disable auto hide for help texts
This commit is contained in:
@@ -51,13 +51,19 @@ Ext.override(Ext.form.Field, {
|
||||
src: 'resources/images/help.png',
|
||||
cls: cls
|
||||
});
|
||||
|
||||
Ext.QuickTips.register({
|
||||
|
||||
var quickTip = {
|
||||
target : helpButton,
|
||||
title : '',
|
||||
text : text,
|
||||
enabled : true
|
||||
});
|
||||
};
|
||||
|
||||
if (this.helpDisableAutoHide){
|
||||
quickTip.autoHide = !this.helpDisableAutoHide;
|
||||
}
|
||||
|
||||
Ext.QuickTips.register(quickTip);
|
||||
},
|
||||
|
||||
getHelpButtonClass: function(){
|
||||
|
||||
Reference in New Issue
Block a user