mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-08-17 20:11:23 +02:00
Set the button text with textContent instead of innerTEXT as some browsers may not support innerTEXT
This commit is contained in:
@ -294,7 +294,7 @@ var et2_toolbar = et2_DOMWidget.extend(
|
|||||||
{
|
{
|
||||||
if (this.countActions <= this.view_range || this.preference[action.id] )
|
if (this.countActions <= this.view_range || this.preference[action.id] )
|
||||||
{
|
{
|
||||||
button.context.innerText = action.caption;
|
button[0].textContent = action.caption;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if(action.icon)
|
if(action.icon)
|
||||||
|
Reference in New Issue
Block a user