Web Component using Polymer that creates an element to create/edit tags.
This component relies on the following third-party libraries:
Download the component and extract in 'components/app-ui-tags'
cd [project folder]
wget https://github.com/app-ui/tags/archive/master.zip
unzip master.zip -d ./components/
Using bower: (Old method)
bower install app.ui.tags
The component is built on top of APP which should be loaded before the component in the section of your website. This library uses the non-standard method of "html imports" for loading custom elements.
- Include APP library
<script src="components/app/build/app.min.js"></script>
- Import Custom Element:
<link rel="import" href="component/app-ui-tags">
- Start using it!
<div is="app-ui-tags"></div>
This is a direct extension of the Backbone UI component with the same name. Its options are defined as option-
parameters in the tag, for example:
<ui-tags option-editable="false" option-data="landscape|nature|farm|january|lake"></ui-tags>
These are the set of options you can use as attributes in your custom element:
...
...
Initiated by Makis Tracend ( @tracend )
Distributed through Makesites.org
Released under the MIT License