Merge pull request #2586 from Steve-Mcl/dev

Support setting title on typedInput option/ check
This commit is contained in:
Nick O'Leary
2020-06-01 13:29:01 +01:00
committed by GitHub

View File

@@ -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);