paper-tags-input
paper-tags-input copied to clipboard
Polymer element for tags input.
Which means you can't set them to false with markup. If you want to set them to false currently, you have to create Boolean properties and use those. see: https://www.polymer-project.org/1.0/docs/devguide/properties#configuring-boolean-properties
Array not initialized error, recommend changing _addTag function as follows: ``` _addTag: function(tag){ if (this.enableAdd == false){ return; } if (typeof(this.tags) == 'undefined' || this.tags == null){ this.tags = [];...
Hello I'm getting the below error while deleting the tags using the x button..any help? tag-item.html:159 Uncaught TypeError: Cannot read property 'parentElement' of null Here is actual line of code....