mirror of https://github.com/xwiki-labs/cryptpad
Help icon is visible bug fixed from File dropdown #1284
This commit is contained in:
parent
517615463d
commit
f5c6fb9c67
|
@ -149,7 +149,10 @@ define([
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
|
@ -2945,7 +2945,10 @@ Uncaught TypeError: Cannot read property 'calculatedType' of null
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
|
@ -4497,7 +4497,10 @@ define([
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
|
@ -1082,7 +1082,10 @@ define([
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
|
@ -367,7 +367,10 @@ define([
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
|
@ -446,7 +446,10 @@ define([
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
|
@ -303,7 +303,10 @@ define([
|
|||
var $helpMenuButton = UIElements.createDropdownEntry({
|
||||
tag: 'a',
|
||||
attributes: { 'class': helpMenu.button.attr('class') },
|
||||
content: h('span', helpMenu.button.text()),
|
||||
content: [
|
||||
h('i', { 'class': helpMenu.button.children('i').attr('class') }),
|
||||
h('span', helpMenu.button.text())
|
||||
],
|
||||
action: function () {
|
||||
helpMenu.button.click();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue