mirror of https://github.com/node-red/node-red.git
Merge pull request #2586 from Steve-Mcl/dev
Support setting title on typedInput option/ checkpull/2590/head
commit
d7505da997
|
@ -449,6 +449,9 @@
|
|||
if (opt.label) {
|
||||
op.text(opt.label);
|
||||
}
|
||||
if (opt.title) {
|
||||
op.prop('title', opt.title)
|
||||
}
|
||||
if (opt.icon) {
|
||||
if (opt.icon.indexOf("<") === 0) {
|
||||
$(opt.icon).prependTo(op);
|
||||
|
|
Loading…
Reference in New Issue