(id)
| 765 | |
| 766 | /* Replace space(s) with "-" to create valid id value */ |
| 767 | getValidId (id) { |
| 768 | id = id === undefined ? '' : id.toString() |
| 769 | return id.replace(/\s+/g, '-') |
| 770 | } |
| 771 | |
| 772 | setInputAttributes (inputAttribute, input) { |
| 773 | if (this.schema.options && this.schema.options.inputAttributes) { |